Skip to content

Commit 83d2cf7

Browse files
Merge pull request #108 from Jean-Beru/fix-addClassesToCompile-deprecation
Fix addClassesToCompile deprecation
2 parents dbca4a9 + cc82062 commit 83d2cf7

File tree

2 files changed

+19
-15
lines changed

2 files changed

+19
-15
lines changed

src/DependencyInjection/BeSimpleI18nRoutingExtension.php

+17-13
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,12 @@ public function load(array $configs, ContainerBuilder $container)
3232
$this->configureRouteNameInflector($config, $container);
3333
$this->configureAnnotations($config, $container, $loader);
3434

35-
$this->addClassesToCompile(array(
36-
'BeSimple\\I18nRoutingBundle\\Routing\\Router',
37-
'BeSimple\\I18nRoutingBundle\\Routing\\RouteGenerator\\NameInflector\\RouteNameInflectorInterface'
38-
));
35+
if (PHP_VERSION_ID < 70000) {
36+
$this->addClassesToCompile(array(
37+
'BeSimple\\I18nRoutingBundle\\Routing\\Router',
38+
'BeSimple\\I18nRoutingBundle\\Routing\\RouteGenerator\\NameInflector\\RouteNameInflectorInterface'
39+
));
40+
}
3941
}
4042

4143
/**
@@ -175,16 +177,18 @@ private function configureRouteNameInflector(array $config, ContainerBuilder $co
175177
$container->setAlias('be_simple_i18n_routing.route_name_inflector', $config['route_name_inflector']);
176178
}
177179

178-
// Try and register the route name inflector to compilation/caching
179-
try {
180-
$def = $container->findDefinition('be_simple_i18n_routing.route_name_inflector');
181-
if ($def->getClass() !== null) {
182-
$this->addClassesToCompile(array($def->getClass()));
180+
if (PHP_VERSION_ID < 70000) {
181+
// Try and register the route name inflector to compilation/caching
182+
try {
183+
$def = $container->findDefinition('be_simple_i18n_routing.route_name_inflector');
184+
if ($def->getClass() !== null) {
185+
$this->addClassesToCompile(array($def->getClass()));
186+
}
187+
} catch (ServiceNotFoundException $e) {
188+
// This happens when the alias is set to a external service
189+
} catch (InvalidArgumentException $e) {
190+
// This happens when the alias is set to a external service in Symfony 2.3
183191
}
184-
} catch (ServiceNotFoundException $e) {
185-
// This happens when the alias is set to a external service
186-
} catch (InvalidArgumentException $e) {
187-
// This happens when the alias is set to a external service in Symfony 2.3
188192
}
189193
}
190194

tests/DependencyInjection/BeSimpleI18nRoutingExtensionTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function loading_with_default_values()
5252
$classesToCompile = $this->container->getExtension('be_simple_i18n_routing')->getClassesToCompile();
5353
$this->assertEquals(
5454
$classesToCompile,
55-
array(
55+
PHP_VERSION_ID >= 70000 ? array() : array(
5656
'BeSimple\\I18nRoutingBundle\\Routing\\RouteGenerator\\NameInflector\\PostfixInflector',
5757
'BeSimple\\I18nRoutingBundle\\Routing\\Router',
5858
'BeSimple\\I18nRoutingBundle\\Routing\\RouteGenerator\\NameInflector\\RouteNameInflectorInterface',
@@ -80,7 +80,7 @@ public function loading_with_route_name_inflector()
8080

8181
$this->assertEquals(
8282
$this->container->getExtension('be_simple_i18n_routing')->getClassesToCompile(),
83-
array(
83+
PHP_VERSION_ID >= 70000 ? array() : array(
8484
'BeSimple\\I18nRoutingBundle\\Routing\\Router',
8585
'BeSimple\\I18nRoutingBundle\\Routing\\RouteGenerator\\NameInflector\\RouteNameInflectorInterface'
8686
)

0 commit comments

Comments
 (0)