Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
jdreesen committed Sep 30, 2024
1 parent 9761a26 commit 507a53f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bricks/Populator/BrickPagePopulator.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function populate(object $target, object $source, ?object $ctx = null): v
->distinct()
->from('documents_editables')
->where('data LIKE :data')
->setParameter('data','%' . $source->getId() . '%')
->setParameter('data', '%' . $source->getId() . '%')
->execute()
->fetchFirstColumn();

Expand Down

0 comments on commit 507a53f

Please sign in to comment.