Skip to content

Commit 8e6836a

Browse files
committed
fix typo
1 parent 05e4aa2 commit 8e6836a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/default/data/pdo.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,8 @@ public function taintStaticEscaped(PDO $pdo, string $s)
234234

235235
public function taintEscaped(PDO $pdo, string $s)
236236
{
237-
$escapeer = new Escaper();
238-
$stmt = $pdo->query('SELECT email, adaid FROM ada WHERE adaid='.$escapeer->escape($s), PDO::FETCH_ASSOC);
237+
$escaper = new Escaper();
238+
$stmt = $pdo->query('SELECT email, adaid FROM ada WHERE adaid='.$escaper->escape($s), PDO::FETCH_ASSOC);
239239
assertType('PDOStatement<array{email: string, adaid: int<-32768, 32767>}>', $stmt);
240240
}
241241
}

0 commit comments

Comments
 (0)