Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Mar 30, 2024
1 parent 5daa211 commit 27ad79f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/Expression/ExpressionBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ private function appendParams(string $sql, array &$expressionParams, array &$par

/** @var non-empty-string $name */
foreach ($nonUniqueParams as $name => $value) {

$paramName = $name[0] === ':' ? substr($name, 1) : $name;
$uniqueName = $this->getUniqueName($paramName, $params);

Expand Down
2 changes: 1 addition & 1 deletion tests/Provider/SqlParserProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static function getNextPlaceholder(): array
null,
],
[
"SELECT * FROM {{customer}} WHERE name = ::name",
'SELECT * FROM {{customer}} WHERE name = ::name',
null,
null,
],
Expand Down

0 comments on commit 27ad79f

Please sign in to comment.