Skip to content

Commit

Permalink
require not only once
Browse files Browse the repository at this point in the history
  • Loading branch information
koriym committed Sep 11, 2018
1 parent dd673ef commit 6837d0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Provide/Router/RouterContainerProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function setRouterContainer(AbstractAppMeta $appMeta, string $routerFile
if (! \file_exists($routerFile)) {
throw new InvalidRouterFilePathException($routerFile);
}
include_once $routerFile;
require $routerFile;
}

/**
Expand Down

0 comments on commit 6837d0b

Please sign in to comment.