summaryrefslogtreecommitdiffstats
path: root/Acl/Permission/MaskBuilder.php
diff options
context:
space:
mode:
authorNicolas Grekas <nicolas.grekas@gmail.com>2015-05-15 16:16:35 +0200
committerNicolas Grekas <nicolas.grekas@gmail.com>2015-05-15 16:16:35 +0200
commit450dfddf29562061e5c2d511c20ee8e8e06d99cf (patch)
tree2214477049f97cfb85b1a08065372d6b3e7be1aa /Acl/Permission/MaskBuilder.php
parent4c7bd960282b017cd44aae49353c723f1da466af (diff)
parent6ed97b76b3efaf04314def15abefd7e8e284a2d0 (diff)
downloadsymfony-security-450dfddf29562061e5c2d511c20ee8e8e06d99cf.zip
symfony-security-450dfddf29562061e5c2d511c20ee8e8e06d99cf.tar.gz
symfony-security-450dfddf29562061e5c2d511c20ee8e8e06d99cf.tar.bz2
Merge branch '2.8'
* 2.8: fixed CS fixed CS fixed CS Fix WebProfilerBundle compatiblity with HttpKernel < 2.7 [Validator] Deprecated PHP7-incompatible constraints and related validators [DebugBundle] Allow alternative destination for dumps [DebugBundle] Use output mechanism of dumpers instead of echoing [DebugBundle] Always collect dumps [FrameworkBundle] Applied new styles to the config:debug & config:dump-reference commands Fix tests in HHVM CS: Pre incrementation/decrementation should be used if possible Conflicts: UPGRADE-2.7.md src/Symfony/Bundle/FrameworkBundle/Command/ConfigDebugCommand.php src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/AssetsHelperTest.php src/Symfony/Bundle/FrameworkBundle/composer.json src/Symfony/Component/Console/Helper/DialogHelper.php src/Symfony/Component/HttpFoundation/Tests/Session/Flash/FlashBagTest.php src/Symfony/Component/Routing/Matcher/Dumper/ApacheMatcherDumper.php src/Symfony/Component/Security/Core/Encoder/Pbkdf2PasswordEncoder.php
Diffstat (limited to 'Acl/Permission/MaskBuilder.php')
-rw-r--r--Acl/Permission/MaskBuilder.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Acl/Permission/MaskBuilder.php b/Acl/Permission/MaskBuilder.php
index 93dcca6..74ecaf6 100644
--- a/Acl/Permission/MaskBuilder.php
+++ b/Acl/Permission/MaskBuilder.php
@@ -78,7 +78,7 @@ class MaskBuilder extends AbstractMaskBuilder
$length = strlen($pattern);
$bitmask = str_pad(decbin($this->mask), $length, '0', STR_PAD_LEFT);
- for ($i = $length - 1; $i >= 0; $i--) {
+ for ($i = $length - 1; $i >= 0; --$i) {
if ('1' === $bitmask[$i]) {
try {
$pattern[$i] = self::getCode(1 << ($length - $i - 1));