We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f0a6e23 + 05b05e7 commit 3dbf813Copy full SHA for 3dbf813
.travis.yml
@@ -13,6 +13,7 @@ env:
13
14
before_script:
15
- composer self-update
16
+ - echo 'memory_limit = -1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
17
- composer require symfony/symfony:${SYMFONY_VERSION} --prefer-source
18
19
script: phpunit --coverage-text
Tests/Unit/Doctrine/Phpcr/LocaleListenerTest.php
@@ -108,6 +108,12 @@ public function testHaslocale()
108
->will($this->returnValue('some'))
109
;
110
111
+ $this->routeMock->expects($this->once())
112
+ ->method('getRequirement')
113
+ ->with('_locale')
114
+ ->will($this->returnValue('some'))
115
+ ;
116
+
117
$this->routeMock->expects($this->never())
118
->method('setDefault')
119
0 commit comments