Skip to content

Commit

Permalink
phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
xmarchegay committed Dec 10, 2024
1 parent 69e457c commit 9c8feb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Task/EntityManager/AbstractDoctrineQueryTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ protected function getQueryBuilder(
if (preg_match('/[^a-zA-Z0-9]/', $field)) {
throw new \UnexpectedValueException("Forbidden field name '{$field}'");
}
$parameterName = 'param_' . bin2hex(random_bytes(4));
$parameterName = 'param_'.bin2hex(random_bytes(4));
if (null === $value) {
$qb->andWhere("e.{$field} IS null");
} else {
Expand Down

0 comments on commit 9c8feb9

Please sign in to comment.