Skip to content
This repository has been archived by the owner on Feb 6, 2020. It is now read-only.

Commit

Permalink
Reverted array check with isset
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasvargiu committed Mar 23, 2019
1 parent 31e0083 commit 5cb729f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ServiceManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ public function configure(array $config)
$this->factories = $config['factories'] + $this->factories;
}

if (isset($config['delegators']) && ! empty($config['delegators'])) {
if (isset($config['delegators'])) {
$this->mergeDelegators($config['delegators']);
}

Expand Down

0 comments on commit 5cb729f

Please sign in to comment.