Commit
This commit is contained in:
parent
6ac584b36a
commit
739f583a33
@ -57,7 +57,7 @@ class TeamMapper
|
|||||||
|
|
||||||
public function getByCardnumber(string $cardnumber): ?Team
|
public function getByCardnumber(string $cardnumber): ?Team
|
||||||
{
|
{
|
||||||
$sth = $this->dbh->prepare('SELECT * FROM lagtabell WHERE Kortnummer = ?');
|
$sth = $this->dbh->prepare('SELECT * FROM lagtabell WHERE Kortnummer = ? LIMIT 1');
|
||||||
$sth->execute([$cardnumber]);
|
$sth->execute([$cardnumber]);
|
||||||
$row = $sth->fetch(PDO::FETCH_ASSOC);
|
$row = $sth->fetch(PDO::FETCH_ASSOC);
|
||||||
if ($row)
|
if ($row)
|
||||||
@ -69,7 +69,7 @@ class TeamMapper
|
|||||||
|
|
||||||
public function get(int $id): ?Team
|
public function get(int $id): ?Team
|
||||||
{
|
{
|
||||||
$sth = $this->dbh->prepare('SELECT * FROM lagtabell WHERE LagID = ?');
|
$sth = $this->dbh->prepare('SELECT * FROM lagtabell WHERE LagID = ? LIMIT 1');
|
||||||
$sth->execute([$id]);
|
$sth->execute([$id]);
|
||||||
$row = $sth->fetch(PDO::FETCH_ASSOC);
|
$row = $sth->fetch(PDO::FETCH_ASSOC);
|
||||||
if ($row)
|
if ($row)
|
||||||
|
Reference in New Issue
Block a user