Document that model_locations/dir now supports glob (#925)

Feature was added with https://github.com/barryvdh/laravel-ide-helper/pull/921
This commit is contained in:
Markus Podar
2020-04-22 21:20:09 +02:00
committed by GitHub
parent 378adeb1f5
commit b7197aec89
2 changed files with 5 additions and 1 deletions
+2 -1
View File
@@ -152,7 +152,8 @@ class ModelsCommand extends Command
{
return array(
array('filename', 'F', InputOption::VALUE_OPTIONAL, 'The path to the helper file', $this->filename),
array('dir', 'D', InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY, 'The model dir', array()),
array('dir', 'D', InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY,
'The model dir, supports glob patterns', array()),
array('write', 'W', InputOption::VALUE_NONE, 'Write to Model file'),
array('nowrite', 'N', InputOption::VALUE_NONE, 'Don\'t write to Model file'),
array('reset', 'R', InputOption::VALUE_NONE, 'Remove the original phpdocs instead of appending'),