-
-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,6 @@ | ||
<?php | ||
|
||
/* | ||
This file returns the global DI container for the application. The DI container | ||
which gets returned must be compatible with the symfony DI container interface. | ||
If you want load an different configuration depending on the environment you can | ||
change the "config.file" parameter. | ||
*/ | ||
|
||
$container = new Fusio\Impl\Dependency\Container(); | ||
$container = require_once __DIR__ . '/../container.php'; | ||
$container->setParameter('config.file', __DIR__ . '/configuration.php'); | ||
|
||
return $container; |