@@ -405,7 +405,7 @@ public function updateObjectFieldAuditing($index, $field, $auditSuccess, $auditF
405
405
*/
406
406
private function deleteAce ($ property , $ index )
407
407
{
408
- $ aces = & $ this ->$ property ;
408
+ $ aces = &$ this ->$ property ;
409
409
if (!isset ($ aces [$ index ])) {
410
410
throw new \OutOfBoundsException (sprintf ('The index "%d" does not exist. ' , $ index ));
411
411
}
@@ -431,7 +431,7 @@ private function deleteAce($property, $index)
431
431
*/
432
432
private function deleteFieldAce ($ property , $ index , $ field )
433
433
{
434
- $ aces = & $ this ->$ property ;
434
+ $ aces = &$ this ->$ property ;
435
435
if (!isset ($ aces [$ field ][$ index ])) {
436
436
throw new \OutOfBoundsException (sprintf ('The index "%d" does not exist. ' , $ index ));
437
437
}
@@ -477,7 +477,7 @@ private function insertAce($property, $index, $mask, SecurityIdentityInterface $
477
477
}
478
478
}
479
479
480
- $ aces = & $ this ->$ property ;
480
+ $ aces = &$ this ->$ property ;
481
481
$ oldValue = $ this ->$ property ;
482
482
if (isset ($ aces [$ index ])) {
483
483
$ this ->$ property = array_merge (
@@ -527,7 +527,7 @@ private function insertFieldAce($property, $index, $field, $mask, SecurityIdenti
527
527
}
528
528
}
529
529
530
- $ aces = & $ this ->$ property ;
530
+ $ aces = &$ this ->$ property ;
531
531
if (!isset ($ aces [$ field ])) {
532
532
$ aces [$ field ] = array ();
533
533
}
@@ -565,7 +565,7 @@ private function insertFieldAce($property, $index, $field, $mask, SecurityIdenti
565
565
*/
566
566
private function updateAce ($ property , $ index , $ mask , $ strategy = null )
567
567
{
568
- $ aces = & $ this ->$ property ;
568
+ $ aces = &$ this ->$ property ;
569
569
if (!isset ($ aces [$ index ])) {
570
570
throw new \OutOfBoundsException (sprintf ('The index "%d" does not exist. ' , $ index ));
571
571
}
@@ -626,7 +626,7 @@ private function updateFieldAce($property, $index, $field, $mask, $strategy = nu
626
626
throw new \InvalidArgumentException ('$field cannot be empty. ' );
627
627
}
628
628
629
- $ aces = & $ this ->$ property ;
629
+ $ aces = &$ this ->$ property ;
630
630
if (!isset ($ aces [$ field ][$ index ])) {
631
631
throw new \OutOfBoundsException (sprintf ('The index "%d" does not exist. ' , $ index ));
632
632
}
0 commit comments