diff --git a/console b/console index fa3fe68..f682396 100755 --- a/console +++ b/console @@ -7,7 +7,6 @@ use Console\Application; $app = new Application(); -$app - ->chdir(__DIR__) - ->loadCommands() - ->run(); +$app->chdir(__DIR__); +$app->loadCommands(); +$app->run(); diff --git a/src/Console/Application.php b/src/Console/Application.php index d31ce38..f32bba6 100644 --- a/src/Console/Application.php +++ b/src/Console/Application.php @@ -29,7 +29,7 @@ class Application extends BaseApplication { foreach ($this->commandsPaths as $path => $namespace) { $finder = new Finder(); - $finder->files('*Command.php')->in($path); + $finder->name('*Command.php')->in($path); foreach ($finder as $file) { $className = $namespace.'\\'.str_replace('.php', '', $file->getFilename());