Skip to content

Commit 771a825

Browse files
committed
Fix CS
1 parent a80b9d9 commit 771a825

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Maker/MakeEntity.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ private function askForNextField(ConsoleStyle $io, array $fields, string $entity
435435

436436
// set type according to user decision
437437
$classProperty->type = $io->confirm('Can this field store multiple enum values', false) ? 'simple_array' : 'string';
438-
} else if ('integer' === $type) {
438+
} elseif ('integer' === $type) {
439439
$classProperty->options['unsigned'] = $io->confirm('Is this an unsigned integer', false);
440440
}
441441

0 commit comments

Comments
 (0)