diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-03-30 17:29:33 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-03-30 17:29:33 +0200 |
commit | 18435f22371644ee2d1e4adfb79c28f1737952a9 (patch) | |
tree | 1404e002230a146788f318e737e5addd2507510f /Tests/Core/Util | |
parent | 5a15c8d7e4bd3605c05970b27d95635e7d510c37 (diff) | |
parent | 66ceb122f27a889f0e5ed3d33e1d29a5f30b86e5 (diff) | |
download | symfony-security-18435f22371644ee2d1e4adfb79c28f1737952a9.zip symfony-security-18435f22371644ee2d1e4adfb79c28f1737952a9.tar.gz symfony-security-18435f22371644ee2d1e4adfb79c28f1737952a9.tar.bz2 |
minor #14089 CS: Binary operators should be arounded by at least one space (keradus)
This PR was merged into the 2.3 branch.
Discussion
----------
CS: Binary operators should be arounded by at least one space
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | ?
| Fixed tickets | N/A
| License | MIT
| Doc PR | N/A
Update before upcoming changes on PHP CS Fixer 1.7
To keep fabbot.io happy ;)
Commits
-------
ec2cec6 CS: Binary operators should be arounded by at least one space
Diffstat (limited to 'Tests/Core/Util')
-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 a8cc660..316b049 100644 --- a/Tests/Core/Util/SecureRandomTest.php +++ b/Tests/Core/Util/SecureRandomTest.php @@ -49,7 +49,7 @@ class SecureRandomTest extends \PHPUnit_Framework_TestCase $f += $c[$i] * $c[$i]; } - $Y = 16/5000 * $f - 5000; + $Y = 16 / 5000 * $f - 5000; $this->assertTrue($Y > 1.03 && $Y < 57.4, 'Poker test failed, Y = '.$Y); } |