You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 2.6:
Improve the config validation in TwigBundle
[WebProfilerBundle][logger] added missing deprecation message.
[Security][Acl] enforce string identifiers
[BrowserKit] Fix bug when uri starts with http.
bumped Symfony version to 2.3.31
updated VERSION for 2.3.30
updated CHANGELOG for 2.3.30
Php Inspections (EA Extended): - resolved possible PHP Fatal in \Symfony\Component\BrowserKit\Cookie::__toString -resolved implicit magic methods calls -resolved callable name case mismatches
@@ -362,7 +377,7 @@ public function testFollowRedirect()
362
377
$client->followRedirect();
363
378
$this->fail('->followRedirect() throws a \LogicException if the request did not respond with 30x HTTP Code');
364
379
} catch (\Exception$e) {
365
-
$this->assertInstanceof('LogicException', $e, '->followRedirect() throws a \LogicException if the request did not respond with 30x HTTP Code');
380
+
$this->assertInstanceOf('LogicException', $e, '->followRedirect() throws a \LogicException if the request did not respond with 30x HTTP Code');
366
381
}
367
382
}
368
383
@@ -392,7 +407,7 @@ public function testFollowRedirectWithMaxRedirects()
392
407
$client->followRedirect();
393
408
$this->fail('->followRedirect() throws a \LogicException if the request was redirected and limit of redirections was reached');
394
409
} catch (\Exception$e) {
395
-
$this->assertInstanceof('LogicException', $e, '->followRedirect() throws a \LogicException if the request was redirected and limit of redirections was reached');
410
+
$this->assertInstanceOf('LogicException', $e, '->followRedirect() throws a \LogicException if the request was redirected and limit of redirections was reached');
Copy file name to clipboardExpand all lines: src/Symfony/Component/Process/Tests/PhpExecutableFinderTest.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,7 @@ public function testFindWithSuffix()
91
91
//TODO maybe php executable is custom or even Windows
92
92
if ('\\' === DIRECTORY_SEPARATOR) {
93
93
$this->assertTrue(is_executable($current));
94
-
$this->assertTrue((bool) preg_match('/'.addSlashes(DIRECTORY_SEPARATOR).'php\.(exe|bat|cmd|com)$/i', $current), '::find() returns the executable PHP with suffixes');
94
+
$this->assertTrue((bool) preg_match('/'.addslashes(DIRECTORY_SEPARATOR).'php\.(exe|bat|cmd|com)$/i', $current), '::find() returns the executable PHP with suffixes');
0 commit comments