diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-07-09 18:12:34 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-07-09 18:12:34 +0200 |
commit | 143998de26178e2bbcd6924676a26ae15ab67745 (patch) | |
tree | 5474328e07a821f716d333b74f0d717c0ed86df5 | |
parent | bda622ef2c5226c3123df629167b0eeccb7127e7 (diff) | |
parent | b57956299e1d75663d748645564d76efcb9e72f3 (diff) | |
download | symfony-security-143998de26178e2bbcd6924676a26ae15ab67745.zip symfony-security-143998de26178e2bbcd6924676a26ae15ab67745.tar.gz symfony-security-143998de26178e2bbcd6924676a26ae15ab67745.tar.bz2 |
Merge branch '2.8'
* 2.8:
Added 'default' color
[HttpFoundation] Reload the session after regenerating its id
[HttpFoundation] Add a test case to confirm a bug in session migration
[Serializer] Fix ClassMetadata::sleep()
[2.6] Static Code Analysis for Components and Bundles
[Finder] Command::addAtIndex() fails with Command instance argument
[DependencyInjection] Freeze also FrozenParameterBag::remove
[Twig][Bridge] replaced `extends` with `use` in bootstrap_3_horizontal_layout.html.twig
fix CS
fixed CS
Add a way to reset the singleton
[Security] allow to use `method` in XML configs
[Serializer] Fix Groups tests.
Remove duplicate example
Remove var not used due to returning early (introduced in 8982c32)
[Serializer] Fix Groups PHPDoc
Enhance hhvm test skip message
fix for legacy asset() with EmptyVersionStrategy
[Form] Added upgrade notes for #15061
-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; |