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 fc0205b commit ed1f09fCopy full SHA for ed1f09f
1 file changed
tests/default/data/pdo-stmt-execute.php
@@ -34,7 +34,7 @@ public function execute(PDO $pdo)
34
assertType('array{email: string, 0: string, adaid: int<-32768, 32767>, 1: int<-32768, 32767>}', $row);
35
}
36
37
- $stmt = $pdo->prepare('SELECT email, adaid FROM ada WHERE adaid = ? and email = ? ');
+ $stmt = $pdo->prepare('SELECT email, adaid FROM ada WHERE adaid = ? and email = ?');
38
$stmt->execute([1, 'email@example.org']);
39
foreach ($stmt as $row) {
40
0 commit comments