Skip to content

Commit b1d7ab4

Browse files
rubenvanasschegithub-actions[bot]
authored andcommitted
Fix styling
1 parent cc6969d commit b1d7ab4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Collectors/EnumCollector.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class EnumCollector extends DefaultCollector
1212
{
1313
public function getTransformedType(ReflectionClass $class): ?TransformedType
1414
{
15-
if (!$this->shouldCollect($class)) {
15+
if (! $this->shouldCollect($class)) {
1616
return null;
1717
}
1818

@@ -44,11 +44,11 @@ protected function shouldCollect(ReflectionClass $class): bool
4444
}),
4545
) > 0;
4646

47-
if (!$hasEnumTransformer) {
47+
if (! $hasEnumTransformer) {
4848
return false;
4949
}
5050

51-
if (!$class->implementsInterface(BackedEnum::class)) {
51+
if (! $class->implementsInterface(BackedEnum::class)) {
5252
return false;
5353
}
5454

0 commit comments

Comments
 (0)