From 8740a9a158d3dd5cfc706a9d4cc1bf7a518f99f3 Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Sun, 8 Sep 2019 11:56:38 +0200 Subject: [PATCH] Fix CS --- src/Console/MetaCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Console/MetaCommand.php b/src/Console/MetaCommand.php index 45c39b03b..00d97c458 100644 --- a/src/Console/MetaCommand.php +++ b/src/Console/MetaCommand.php @@ -87,8 +87,8 @@ public function handle() } try { - $concrete = $this->laravel->make($abstract); - $reflectionClass = new \ReflectionClass($concrete); + $concrete = $this->laravel->make($abstract); + $reflectionClass = new \ReflectionClass($concrete); if (is_object($concrete) && !$reflectionClass->isAnonymous()) { $bindings[$abstract] = get_class($concrete); }