8000 fixed CS · symfony/symfony@0e57c7b · GitHub
[go: up one dir, main page]

Skip to content

Commit 0e57c7b

Browse files
committed
fixed CS
1 parent 90dfc9e commit 0e57c7b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Symfony/Component/Security/Acl/Dbal/MutableAclProvider.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -810,17 +810,17 @@ private function updateOldFieldAceProperty($ane, array $changes)
810810
{
811811
$currentIds = array();
812812
foreach ($changes[1] as $field => $new) {
813-
for ($i=0,$c=count($new); $i<$c; $i++) {
813+
for ($i = 0, $c = count($new); $i < $c; $i++) {
814814
$ace = $new[$i];
815815

816-
if (null != $ace->getId()) {
816+
if (null !== $ace->getId()) {
817817
$currentIds[$ace->getId()] = true;
818818
}
819819
}
820820
}
821821

822822
foreach ($changes[0] as $old) {
823-
for ($i=0,$c=count($old); $i<$c; $i+ AC8C +) {
823+
for ($i = 0, $c = count($old); $i < $c; $i++) {
824824
$ace = $old[$i];
825825

826826
if (!isset($currentIds[$ace->getId()])) {
@@ -890,12 +890,12 @@ private function updateOldAceProperty($name, array $changes)
890890
for ($i=0,$c=count($new); $i<$c; $i++) {
891891
$ace = $new[$i];
892892

893-
if (null != $ace->getId()) {
893+
if (null !== $ace->getId()) {
894894
$currentIds[$ace->getId()] = true;
895895
}
896896
}
897897

898-
for ($i=0,$c=count($old); $i<$c; $i++) {
898+
for ($i = 0, $c = count($old); $i < $c; $i++) {
899899
$ace = $old[$i];
900900

901901
if (!isset($currentIds[$ace->getId()])) {

0 commit comments

Comments
 (0)
0