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 May 27, 2024
1 parent 3181f93 commit 0760e46
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function testSelect(): void
->where(function (QueryBuilder $qb): void {
$searchProperties = ['code', 'name', 'trans.title'];
foreach ($searchProperties as $propertyName) {
$qb->orWhere($propertyName, 'LIKE', "%eng%");
$qb->orWhere($propertyName, 'LIKE', '%eng%');
}
})
// User want to sort by translation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace Cycle\ORM\Tests\Functional\Driver\Common\Integration\Issue482\Entity;


class Translation
{
public ?int $id = null;
Expand Down

0 comments on commit 0760e46

Please sign in to comment.