for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* (c) Christian Gripp <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Core23\PiwikBundle\DependencyInjection;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Loader;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
final class Core23PiwikExtension extends Extension
{
/**
* {@inheritdoc}
public function load(array $configs, ContainerBuilder $container): void
$configuration = new Configuration();
$config = $this->processConfiguration($configuration, $configs);
$bundles = $container->getParameter('kernel.bundles');
$loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
$loader->load('services.xml');
if (isset($bundles['SonataBlockBundle'])) {
$loader->load('block.xml');
}
$this->configureHttpClient($container, $config);
* @param ContainerBuilder $container
* @param array $config
private function configureHttpClient(ContainerBuilder $container, array $config): void
$container->setAlias('core23_piwik.http.client', $config['http']['client']);
$container->setAlias('core23_piwik.http.message_factory', $config['http']['message_factory']);