37 lines
898 B
PHP
37 lines
898 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pcm\GeocodeBundle\Tests;
|
|
|
|
use Pcm\GeocodeBundle\PcmGeocodeBundle;
|
|
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
|
|
use Symfony\Component\Config\Loader\LoaderInterface;
|
|
use Symfony\Component\HttpKernel\Kernel;
|
|
|
|
class AppKernel extends Kernel
|
|
{
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function registerBundles(): array
|
|
{
|
|
$bundles = array();
|
|
|
|
if (in_array($this->getEnvironment(), array('test'))) {
|
|
$bundles[] = new FrameworkBundle();
|
|
$bundles[] = new PcmGeocodeBundle();
|
|
}
|
|
|
|
return $bundles;
|
|
}
|
|
|
|
/**
|
|
* @param LoaderInterface $loader
|
|
*/
|
|
public function registerContainerConfiguration(LoaderInterface $loader): void
|
|
{
|
|
dump(__DIR__.'/config_'.$this->getEnvironment().'.yml');
|
|
$loader->load(__DIR__.'/config_'.$this->getEnvironment().'.yml');
|
|
}
|
|
} |