Skip to content

Commit

Permalink
use container from parent
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Apr 5, 2020
1 parent c48bbeb commit 959cd0c
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions tests/container.php
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;

0 comments on commit 959cd0c

Please sign in to comment.