Skip to content

Commit b371957

Browse files
committed
Allow null return
Signed-off-by: Joey Smith <[email protected]> Signed-off-by: Joey Smith <[email protected]>
1 parent 2572f76 commit b371957

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Adapter/Driver/ConnectionInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function getConnectionParameters(): array;
2525
*
2626
* $name Ignored (this is not ignored for PDO), imagine that...
2727
*/
28-
public function getLastGeneratedValue(?string $name = null): string|int|false;
28+
public function getLastGeneratedValue(?string $name = null): string|int|false|null;
2929

3030
/**
3131
* Get resource

0 commit comments

Comments
 (0)