Skip to content

Commit f529020

Browse files
authored
Fix make:cast --inbound so it's a boolean option, not value (#44505)
1 parent 8d31d9a commit f529020

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Foundation/Console/CastMakeCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ protected function getOptions()
8686
{
8787
return [
8888
['force', 'f', InputOption::VALUE_NONE, 'Create the class even if the cast already exists'],
89-
['inbound', null, InputOption::VALUE_OPTIONAL, 'Generate an inbound cast class'],
89+
['inbound', null, InputOption::VALUE_NONE, 'Generate an inbound cast class'],
9090
];
9191
}
9292
}

0 commit comments

Comments
 (0)