diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2013-12-28 08:46:05 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2013-12-28 08:46:05 +0100 |
commit | a32c9ce67253c4571e867799fcddbeb1619cf3fd (patch) | |
tree | 9303615831aca94c7358c44b89d9c51a5b6ca519 | |
parent | 3bdc91a588daacddd5bf7cacb114143903983ec8 (diff) | |
download | symfony-security-a32c9ce67253c4571e867799fcddbeb1619cf3fd.zip symfony-security-a32c9ce67253c4571e867799fcddbeb1619cf3fd.tar.gz symfony-security-a32c9ce67253c4571e867799fcddbeb1619cf3fd.tar.bz2 |
fixed CS for lambdas
-rw-r--r-- | Tests/Core/Util/SecureRandomTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Core/Util/SecureRandomTest.php b/Tests/Core/Util/SecureRandomTest.php index c7ed016..38e9121 100644 --- a/Tests/Core/Util/SecureRandomTest.php +++ b/Tests/Core/Util/SecureRandomTest.php @@ -68,7 +68,7 @@ class SecureRandomTest extends \PHPUnit_Framework_TestCase $runs[$i] = 0; } - $addRun = function($run) use (&$runs) { + $addRun = function ($run) use (&$runs) { if ($run > 6) { $run = 6; } |