diff options
author | Dariusz Górecki <darek.krk@gmail.com> | 2013-04-02 10:39:57 +0100 |
---|---|---|
committer | Dariusz Górecki <darek.krk@gmail.com> | 2013-04-02 10:39:57 +0100 |
commit | cfa23578e55c43c20a8d823bf9a01ed08bcde1d5 (patch) | |
tree | 5822fa6366ba33f0390760468be2733cc3f8bd25 /Tests/Core | |
parent | 708f7aa9f69b2ae48832a875c252f4e14f2d76e8 (diff) | |
download | symfony-security-cfa23578e55c43c20a8d823bf9a01ed08bcde1d5.zip symfony-security-cfa23578e55c43c20a8d823bf9a01ed08bcde1d5.tar.gz symfony-security-cfa23578e55c43c20a8d823bf9a01ed08bcde1d5.tar.bz2 |
[CS Fix] Consistent coding-style of concatenation operator usage
Diffstat (limited to 'Tests/Core')
-rw-r--r-- | Tests/Core/Encoder/BCryptPasswordEncoderTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Core/Encoder/BCryptPasswordEncoderTest.php b/Tests/Core/Encoder/BCryptPasswordEncoderTest.php index bfaf5fc..45c8f74 100644 --- a/Tests/Core/Encoder/BCryptPasswordEncoderTest.php +++ b/Tests/Core/Encoder/BCryptPasswordEncoderTest.php @@ -105,7 +105,7 @@ class BCryptPasswordEncoderTest extends \PHPUnit_Framework_TestCase $prefix = '$'.(version_compare(phpversion(), '5.3.7', '>=') ? '2y' : '2a').'$'; $salt = 'MDEyMzQ1Njc4OWFiY2RlZe'; - $expected = crypt(self::PASSWORD, $prefix . self::VALID_COST . '$' . $salt); + $expected = crypt(self::PASSWORD, $prefix.self::VALID_COST.'$'.$salt); $this->assertEquals($expected, $result); } |