1
1
<?php
2
2
3
- /**
3
+ /*
4
4
* This file is part of the BazingaGeocoderBundle package.
5
5
* For the full copyright and license information, please view the LICENSE
6
6
* file that was distributed with this source code.
7
7
*
8
8
* @license MIT License
9
9
*/
10
+
10
11
namespace Bazinga \Bundle \GeocoderBundle \DependencyInjection ;
11
12
12
13
use Bazinga \Bundle \GeocoderBundle \ProviderFactory \ProviderFactoryInterface ;
13
14
use Geocoder \Provider \Cache \ProviderCache ;
14
15
use Geocoder \Provider \Provider ;
15
- use Symfony \Component \DependencyInjection \Loader \YamlFileLoader ;
16
- use Symfony \Component \HttpKernel \DependencyInjection \Extension ;
17
- use Symfony \Component \DependencyInjection \Loader \XmlFileLoader ;
16
+ use Symfony \Component \Config \Definition \Processor ;
17
+ use Symfony \Component \Config \FileLocator ;
18
18
use Symfony \Component \DependencyInjection \ContainerBuilder ;
19
- use Symfony \Component \DependencyInjection \Definition ;
19
+ use Symfony \Component \DependencyInjection \Loader \ YamlFileLoader ;
20
20
use Symfony \Component \DependencyInjection \Reference ;
21
- use Symfony \Component \Config \FileLocator ;
22
- use Symfony \Component \Config \Definition \Processor ;
21
+ use Symfony \Component \HttpKernel \DependencyInjection \Extension ;
23
22
24
23
/**
25
24
* William Durand <[email protected] >.
@@ -46,7 +45,7 @@ public function load(array $configs, ContainerBuilder $container)
46
45
47
46
$ tag = current ($ definition ->getTag ('kernel.event_listener ' ));
48
47
$ tag ['priority ' ] = $ config ['fake_ip ' ]['priority ' ];
49
- $ tags = array ( 'kernel.event_listener ' => array ( $ tag)) ;
48
+ $ tags = [ 'kernel.event_listener ' => [ $ tag]] ;
50
49
$ definition ->setTags ($ tags );
51
50
} else {
52
51
$ container ->removeDefinition ('bazinga_geocoder.event_listener.fake_request ' );
@@ -85,7 +84,7 @@ private function loadProviders(ContainerBuilder $container, array $config)
85
84
*
86
85
* @param ContainerBuilder $
87
86
* @param string $serviceId
88
- * @param array $providerConfig
87
+ * @param array $providerConfig
89
88
*/
90
89
private function configureCache (ContainerBuilder $ container , string $ serviceId , array $ providerConfig )
91
90
{
@@ -109,7 +108,7 @@ private function configureCache(ContainerBuilder $container, string $serviceId,
109
108
->setArguments ([
110
109
new Reference ($ serviceId .'.cache.inner ' ),
111
110
new Reference ($ cacheServiceId ),
112
- $ providerConfig ['cache_lifetime ' ]
111
+ $ providerConfig ['cache_lifetime ' ],
113
112
]);
114
113
}
115
114
0 commit comments