Skip to content

Commit

Permalink
CI failure fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonferens committed Nov 4, 2024
1 parent 2e94512 commit 1f703b2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Commands/GenerateEnumsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ protected function enums(): Collection

protected function builder(): EnumBuilder
{
$generateAs = config()->string('paragon.generate-as');
/**
* @var string $generateAs
*/
$generateAs = config('paragon.generate-as');

$builder = match (true) {
$this->option('javascript') => EnumJsBuilder::class,
Expand Down

0 comments on commit 1f703b2

Please sign in to comment.