Spaces:
No application file
No application file
| declare(strict_types=1); | |
| namespace MauticPlugin\MauticClearbitBundle\DependencyInjection; | |
| use Symfony\Component\Config\FileLocator; | |
| use Symfony\Component\DependencyInjection\ContainerBuilder; | |
| use Symfony\Component\DependencyInjection\Extension\Extension; | |
| use Symfony\Component\DependencyInjection\Loader\PhpFileLoader; | |
| class MauticClearbitExtension 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'); | |
| } | |
| } | |