Skip to content

Commit bba3a3d

Browse files
authoredOct 4, 2024
Merge pull request #87 from jameshulse/patch-1
Don't generate if an enum has no cases yet
2 parents 4e1b7a1 + c3000cb commit bba3a3d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎src/Transformers/EnumTransformer.php

+4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ public function transform(ReflectionClass $class, string $name): ?TransformedTyp
3131
return null;
3232
}
3333

34+
if (empty($enum->getCases())) {
35+
return null;
36+
}
37+
3438
return $this->config->shouldTransformToNativeEnums()
3539
? $this->toEnum($enum, $name)
3640
: $this->toType($enum, $name);

0 commit comments

Comments
 (0)