Files
pcm-geocode-bundle/tests/AppKernel.php
2022-07-20 22:06:26 +01:00

36 lines
833 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
{
$loader->load(__DIR__.'/config_'.$this->getEnvironment().'.yml');
}
}