Inject filesystem instance

This commit is contained in:
Barry vd. Heuvel
2015-08-10 20:35:04 +02:00
parent 0d333c6228
commit 99953adb73
+2 -2
View File
@@ -61,8 +61,8 @@ class IdeHelperServiceProvider extends ServiceProvider
); );
$this->app['command.ide-helper.models'] = $this->app->share( $this->app['command.ide-helper.models'] = $this->app->share(
function () { function ($app) {
return new ModelsCommand(); return new ModelsCommand($app['files']);
} }
); );