Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .phpstan-dba-mysqli.cache

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions .phpstan-dba-pdo.cache

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

63 changes: 63 additions & 0 deletions tests/default/config/.phpstan-dba-mysqli.cache

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

63 changes: 63 additions & 0 deletions tests/default/config/.phpstan-dba-pdo.cache

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

63 changes: 63 additions & 0 deletions tests/default/config/.phpunit-phpstan-dba-mysqli.cache

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

63 changes: 63 additions & 0 deletions tests/default/config/.phpunit-phpstan-dba-pdo.cache

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/default/data/pdo-prepare.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function queryBranches(PDO $pdo, bool $bool)

public function placeholderInData(PDO $pdo)
{
$query = 'SELECT adaid FROM ada WHERE email LIKE "hello?%"';
$query = "SELECT adaid FROM ada WHERE email LIKE 'hello?%'";
$stmt = $pdo->prepare($query);
assertType('PDOStatement<array{adaid: int<-32768, 32767>, 0: int<-32768, 32767>}>', $stmt);
$stmt->execute();
Expand Down
2 changes: 1 addition & 1 deletion tests/default/data/pdo.php
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public function aggregateFunctions(PDO $pdo)

public function placeholderInData(PDO $pdo)
{
$query = 'SELECT adaid FROM ada WHERE email LIKE "hello?%"';
$query = "SELECT adaid FROM ada WHERE email LIKE 'hello?%'";
$stmt = $pdo->query($query, PDO::FETCH_ASSOC);
assertType('PDOStatement<array{adaid: int<-32768, 32767>}>', $stmt);

Expand Down
Loading