Lemon\RestBundle\Tests\TestKernel::registerContainerConfiguration PHP Method

registerContainerConfiguration() public method

public registerContainerConfiguration ( Symfony\Component\Config\Loader\LoaderInterface $loader )
$loader Symfony\Component\Config\Loader\LoaderInterface
    public function registerContainerConfiguration(LoaderInterface $loader)
    {
        if ($this->getEnvironment() == 'test_mongodb') {
            $loader->load(__DIR__ . '/config/config_mongodb.yml');
        } else {
            $loader->load(__DIR__ . '/config/config.yml');
        }
    }