summaryrefslogtreecommitdiffstats
path: root/Core/Tests/Encoder
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2014-11-20 14:24:23 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2014-11-20 14:24:23 +0100
commitb3fc90d88bd2fe87ac8049c8e363c73781248866 (patch)
treee5b0e7a190fdda09c8d9d7c9f6aba84b2f067b4b /Core/Tests/Encoder
parente3edd18b37e848d4870c521f53746de8acb5eed1 (diff)
parent4fb524b3675e3fc507a841e82b3344be050f5030 (diff)
downloadsymfony-security-b3fc90d88bd2fe87ac8049c8e363c73781248866.zip
symfony-security-b3fc90d88bd2fe87ac8049c8e363c73781248866.tar.gz
symfony-security-b3fc90d88bd2fe87ac8049c8e363c73781248866.tar.bz2
Merge branch '2.5' into 2.6v2.6.0-BETA2
* 2.5: [SecurityBundle] Authentication entry point is only registered with firewall exception listener, not with authentication listeners be smarter when guessing the document root Azerbaijani locale Fixed grammar error in docblock Adjust upgrade file rendering [Bridge/Propel1] Changed deps to accepts all upcoming propel1 versions compare version using PHP_VERSION_ID [Form] Add doc for FormEvents don't override internal PHP constants [Session] Fix parameter names in WriteCheckSessionHandler Add consistency with request type checking [FrameworkBundle] Fix server run in case the router script does not exist Conflicts: composer.json src/Symfony/Component/Debug/ErrorHandler.php src/Symfony/Component/Debug/ExceptionHandler.php
Diffstat (limited to 'Core/Tests/Encoder')
-rw-r--r--Core/Tests/Encoder/BCryptPasswordEncoderTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Tests/Encoder/BCryptPasswordEncoderTest.php b/Core/Tests/Encoder/BCryptPasswordEncoderTest.php
index 2213dc5..2f7b845 100644
--- a/Core/Tests/Encoder/BCryptPasswordEncoderTest.php
+++ b/Core/Tests/Encoder/BCryptPasswordEncoderTest.php
@@ -66,7 +66,7 @@ class BCryptPasswordEncoderTest extends \PHPUnit_Framework_TestCase
private function skipIfPhpVersionIsNotSupported()
{
- if (version_compare(phpversion(), '5.3.7', '<')) {
+ if (PHP_VERSION_ID < 50307) {
$this->markTestSkipped('Requires PHP >= 5.3.7');
}
}