We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents df0b1dd + a693e77 commit 25fab6bCopy full SHA for 25fab6b
src/TableGateway/AbstractTableGateway.php
@@ -49,7 +49,7 @@ abstract class AbstractTableGateway implements TableGatewayInterface
49
50
protected ?Sql $sql = null;
51
52
- protected ?int $lastInsertValue = null;
+ protected string|int|false|null $lastInsertValue = null;
53
54
public function isInitialized(): bool
55
{
@@ -400,7 +400,7 @@ protected function executeDelete(Delete $delete): int
400
return $result->getAffectedRows();
401
}
402
403
- public function getLastInsertValue(): int
+ public function getLastInsertValue(): string|int|false|null
404
405
return $this->lastInsertValue;
406
0 commit comments