summaryrefslogtreecommitdiffstats
path: root/Acl/Dbal/MutableAclProvider.php
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2015-03-30 17:55:07 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2015-03-30 17:55:07 +0200
commitb071a103319fc4d8549e17e575c75b8b3417d8cd (patch)
tree3f901a8dc01d8a8af8c32b3dfdd622e6055c121f /Acl/Dbal/MutableAclProvider.php
parent02b20eccaf64c7c3c138f89e91f0a83c90cebfa2 (diff)
parent06dbcd5a5464cccf4c748071f338f34130ecad06 (diff)
downloadsymfony-security-b071a103319fc4d8549e17e575c75b8b3417d8cd.zip
symfony-security-b071a103319fc4d8549e17e575c75b8b3417d8cd.tar.gz
symfony-security-b071a103319fc4d8549e17e575c75b8b3417d8cd.tar.bz2
Merge branch '2.6' into 2.7
* 2.6: [Validator] Add missing pt_BR translations Add parsing of hexadecimal strings for PHP 7 [Configuration] improve description for ignoreExtraKeys on ArrayNodeDefinition [Validator] Added missing Hungarian translation [Validator] Fixed grammar in Hungarian translation CS: Unary operators should be placed adjacent to their operands CS: Binary operators should be arounded by at least one space remove useless tests that fail in php 7 [Translator] fix test for php 7 compatibility Update phpdoc of ProcessBuilder#setPrefix() Conflicts: src/Symfony/Bridge/Propel1/Logger/PropelLogger.php src/Symfony/Component/Validator/Resources/translations/validators.hu.xlf
Diffstat (limited to 'Acl/Dbal/MutableAclProvider.php')
-rw-r--r--Acl/Dbal/MutableAclProvider.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/Acl/Dbal/MutableAclProvider.php b/Acl/Dbal/MutableAclProvider.php
index 023a22f..b28e2b2 100644
--- a/Acl/Dbal/MutableAclProvider.php
+++ b/Acl/Dbal/MutableAclProvider.php
@@ -854,7 +854,7 @@ QUERY;
$sids = new \SplObjectStorage();
$classIds = new \SplObjectStorage();
foreach ($changes[1] as $field => $new) {
- for ($i = 0, $c = count($new); $i<$c; $i++) {
+ for ($i = 0, $c = count($new); $i < $c; $i++) {
$ace = $new[$i];
if (null === $ace->getId()) {
@@ -928,7 +928,7 @@ QUERY;
$sids = new \SplObjectStorage();
$classIds = new \SplObjectStorage();
- for ($i = 0, $c = count($new); $i<$c; $i++) {
+ for ($i = 0, $c = count($new); $i < $c; $i++) {
$ace = $new[$i];
if (null === $ace->getId()) {
@@ -969,7 +969,7 @@ QUERY;
list($old, $new) = $changes;
$currentIds = array();
- for ($i = 0, $c = count($new); $i<$c; $i++) {
+ for ($i = 0, $c = count($new); $i < $c; $i++) {
$ace = $new[$i];
if (null !== $ace->getId()) {