| Total Complexity | 2 | 
| Total Lines | 18 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 13 | class AlphaVisitorTrackingExtension extends Extension  | 
            ||
| 14 | { | 
            ||
| 15 | public function load(array $configs, ContainerBuilder $container): void  | 
            ||
| 16 |     { | 
            ||
| 17 | $configuration = new Configuration();  | 
            ||
| 18 | $config = $this->processConfiguration($configuration, $configs);  | 
            ||
| 19 | |||
| 20 | $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));  | 
            ||
| 21 |         $loader->load('services.yml'); | 
            ||
| 22 | |||
| 23 | $this->handleFirewallBlacklist($container, $config);  | 
            ||
| 24 | }  | 
            ||
| 25 | |||
| 26 | private function handleFirewallBlacklist(ContainerBuilder $container, array $config): void  | 
            ||
| 31 | }  | 
            ||
| 32 | }  | 
            ||
| 33 |