23 lines
633 B
PHP
Executable File
23 lines
633 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace MauticPlugin\MauticCrmBundle\DependencyInjection;
|
|
|
|
use Symfony\Component\Config\FileLocator;
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
use Symfony\Component\DependencyInjection\Extension\Extension;
|
|
use Symfony\Component\DependencyInjection\Loader\PhpFileLoader;
|
|
|
|
class MauticCrmExtension extends Extension
|
|
{
|
|
/**
|
|
* @param mixed[] $configs
|
|
*/
|
|
public function load(array $configs, ContainerBuilder $container): void
|
|
{
|
|
$loader = new PhpFileLoader($container, new FileLocator(__DIR__.'/../Config'));
|
|
$loader->load('services.php');
|
|
}
|
|
}
|