Skip to content

Commit 7b03a4d

Browse files
committed
Fix CS
1 parent b5454c6 commit 7b03a4d

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

bundle/Command/GenerateImageVariationsCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,8 @@ private function parseCommaDelimited(?string $value): array
207207
array_filter(
208208
$values,
209209
static fn (string $value): bool => $value !== '',
210-
)
211-
)
210+
),
211+
),
212212
);
213213
}
214214
}

bundle/Command/TagContentByTypesCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ private function parseCommaDelimited(string $value): array
184184
array_filter(
185185
$values,
186186
static fn (string $value): bool => $value !== '',
187-
)
188-
)
187+
),
188+
),
189189
);
190190
}
191191
}

0 commit comments

Comments
 (0)