diff options
author | Vladimir Reznichenko <kalessil@gmail.com> | 2015-07-07 21:01:23 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-07-08 07:59:48 +0200 |
commit | bc07ab0b812567146980e40ab3987aa46a3f95a1 (patch) | |
tree | 8489ce651c53f78e8f5eade3c43011cb8e7522c6 /Core | |
parent | 5e1c369074daca0707bc1845ed9b8f907ffd6ef9 (diff) | |
download | symfony-security-bc07ab0b812567146980e40ab3987aa46a3f95a1.zip symfony-security-bc07ab0b812567146980e40ab3987aa46a3f95a1.tar.gz symfony-security-bc07ab0b812567146980e40ab3987aa46a3f95a1.tar.bz2 |
[2.6] Static Code Analysis for Components and Bundlesv2.6.10
Diffstat (limited to 'Core')
-rw-r--r-- | Core/Tests/Util/SecureRandomTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Tests/Util/SecureRandomTest.php b/Core/Tests/Util/SecureRandomTest.php index 666af30..2e94cc1 100644 --- a/Core/Tests/Util/SecureRandomTest.php +++ b/Core/Tests/Util/SecureRandomTest.php @@ -138,7 +138,7 @@ class SecureRandomTest extends \PHPUnit_Framework_TestCase */ public function testSerialCorrelation($secureRandom) { - $shift = rand(1, 5000); + $shift = mt_rand(1, 5000); $b = $this->getBitSequence($secureRandom, 20000); $Z = 0; |