We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43522bf commit ff4ff99Copy full SHA for ff4ff99
1 file changed
tests/default/data/doctrine-dbal.php
@@ -61,6 +61,9 @@ public function executeQuery(Connection $conn, array $types, QueryCacheProfile $
61
62
$result = $conn->executeQuery('SELECT email, adaid FROM ada');
63
assertType('array{email: string, adaid: int<-32768, 32767>}|false', $result->fetchAssociative());
64
+
65
+ $result = $conn->executeQuery('SELECT pid FROM typemix');
66
+ assertType('array{pid: int<0, 4294967295>}|false', $result->fetchAssociative());
67
}
68
69
public function executeStatement(Connection $conn, int $adaid)
0 commit comments