From 692b223e94139428427ab2b4d2370b8bc6b2fdbe Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Mon, 16 Mar 2015 18:22:03 +0100 Subject: [PATCH] 5.3 array syntax Fixes #183 --- src/Console/MetaCommand.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Console/MetaCommand.php b/src/Console/MetaCommand.php index 30c898ac1..f6b8324cf 100644 --- a/src/Console/MetaCommand.php +++ b/src/Console/MetaCommand.php @@ -41,12 +41,12 @@ class MetaCommand extends Command { /** @var \Illuminate\View\Factory */ protected $view; - protected $methods = [ + protected $methods = array( '\Illuminate\Foundation\Application::make', '\Illuminate\Container\Container::make', '\App::make', 'app', - ]; + ); /** * @@ -81,10 +81,10 @@ public function fire() } } - $content = $this->view->make('laravel-ide-helper::meta', [ + $content = $this->view->make('laravel-ide-helper::meta', array( 'bindings' => $bindings, 'methods' => $this->methods, - ])->render(); + ))->render(); $written = $this->files->put($filename, $content);