Skip to content

Commit

Permalink
Bootstrap Array to String conversion fix #145
Browse files Browse the repository at this point in the history
  • Loading branch information
WJRovers committed May 11, 2016
1 parent 201b56f commit d2a5b0a
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 @@ -28,7 +28,7 @@ public function bootstrap($app)
if ($moduleName) {
// The module was added in the configuration, make sure to add it to the application bootstrap so it gets loaded
$app->bootstrap[] = $moduleName;
$app->bootstrap = array_unique($app->bootstrap);
$app->bootstrap = array_unique($app->bootstrap, SORT_REGULAR);
}

if ($app->has('i18n')) {
Expand Down

0 comments on commit d2a5b0a

Please sign in to comment.