Skip to content

Commit fc3ce91

Browse files
committed
Fix CS error
1 parent 111e7ea commit fc3ce91

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/Model/Entity/TagAwareTrait.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ public function untag($tags = null)
5757

5858
foreach ($untags as $untag) {
5959
foreach ($tags as $k => $tag) {
60-
if ((empty($untag[$pk]) || $tag[$pk] === $untag[$pk]) &&
60+
if (
61+
(empty($untag[$pk]) || $tag[$pk] === $untag[$pk]) &&
6162
(empty($untag[$df]) || $tag[$df] === $untag[$df])
6263
) {
6364
unset($tags[$k]);

0 commit comments

Comments
 (0)