Skip to content

Commit 7756eac

Browse files
Merge branch '3.4' into 4.0
* 3.4: Fix lock strategy tests [travis] cache compiled php extensions fix merge Allow remember-me factory creation when multiple user providers are configured. Add tests for glob loaders Improve assertions [DI][Routing] Fix tracking of globbed resources [Config] Handle Service/EventSubscriberInterface in ReflectionClassResource always call the parent class' constructor
2 parents a587cbc + 9d7b6fb commit 7756eac

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Resources/config/routing.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<argument type="service" id="file_locator" />
3131
</service>
3232

33-
<service id="routing.loader.glob" class="Symfony\Component\Config\Loader\GlobFileLoader">
33+
<service id="routing.loader.glob" class="Symfony\Component\Routing\Loader\GlobFileLoader">
3434
<tag name="routing.loader" />
3535
<argument type="service" id="file_locator" />
3636
</service>

Tests/DependencyInjection/FrameworkExtensionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1101,7 +1101,7 @@ private function assertCachePoolServiceDefinitionIsCreated(ContainerBuilder $con
11011101
$this->assertFalse($poolDefinition->isAbstract(), sprintf('Service definition "%s" is not abstract.', $id));
11021102

11031103
$tag = $poolDefinition->getTag('cache.pool');
1104-
$this->assertTrue(isset($tag[0]['default_lifetime']), 'The default lifetime is stored as an attribute of the "cache.pool" tag.');
1104+
$this->assertArrayHasKey('default_lifetime', $tag[0], 'The default lifetime is stored as an attribute of the "cache.pool" tag.');
11051105
$this->assertSame($defaultLifetime, $tag[0]['default_lifetime'], 'The default lifetime is stored as an attribute of the "cache.pool" tag.');
11061106

11071107
$parentDefinition = $poolDefinition;

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"symfony/polyfill-mbstring": "~1.0",
2828
"symfony/filesystem": "~3.4|~4.0",
2929
"symfony/finder": "~3.4|~4.0",
30-
"symfony/routing": "~3.4|~4.0"
30+
"symfony/routing": "^3.4.5|^4.0.5"
3131
},
3232
"require-dev": {
3333
"doctrine/cache": "~1.0",

0 commit comments

Comments
 (0)