Skip to content

Commit

Permalink
Merge bc2c89f into 37eb23b
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Oct 2, 2022
2 parents 37eb23b + bc2c89f commit 308db80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"nette/finder": "~2.5",
"nette/neon": "~3.0",
"phpstan/extension-installer": "1.1.0",
"phpstan/phpstan": "1.5.3",
"phpstan/phpstan": "1.8.6",
"phpstan/phpstan-deprecation-rules": "1.0.0",
"phpstan/phpstan-strict-rules": "1.1.0",
"symfony/config": "~4.4 || ~5.0",
Expand Down
2 changes: 1 addition & 1 deletion src/SqlProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public function processModifier(string $type, $value): string
if (preg_match('#^-?[1-9][0-9]*+\z#', $value) !== 1) {
break;
}
return (string) $value;
return $value;

case '_like':
return $this->platform->formatStringLike($value, -1);
Expand Down

0 comments on commit 308db80

Please sign in to comment.