Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
barryvdh committed Sep 8, 2019
1 parent d344cdc commit 8740a9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Console/MetaCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 8740a9a

Please sign in to comment.