Skip to content

Commit

Permalink
[#2] Fixed typo in Bootstrap,php
Browse files Browse the repository at this point in the history
  • Loading branch information
korotovsky authored Sep 4, 2017
1 parent 44494a7 commit 706792a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public function bootstrap($app)
if (isset($definitions[self::getHandlerId($name)])) {
$id = self::getHandlerId($name);
$class = $definitions[self::getHandlerId($name)]['class'];
} elseif (!isset($options['class'])) {
} elseif (isset($options['class'])) {
$id = $options['class'];
$class = $options['class'];
} else {
Expand Down

0 comments on commit 706792a

Please sign in to comment.