Skip to content

Commit

Permalink
CS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kamalkhan committed Aug 18, 2019
1 parent 5481030 commit e8f4cf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ServiceContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ protected function registerServiceProvider($class, $force = false, & $isDeferred

if (! is_string($class)) {
$class = get_class($class);
} else if (class_exists($class)) {
} elseif (class_exists($class)) {
$provider = $this->get($class);
}

Expand Down

0 comments on commit e8f4cf4

Please sign in to comment.