diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-11-28 11:22:51 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-11-28 11:22:51 +0100 |
commit | c5a10052d2345676599b8a892d49ccd480c55be0 (patch) | |
tree | d64e6a3fd8274732db18a0103037fb1f9490384d /Acl | |
parent | 4cbe9221d4fa99fba7aa4b21254a228758cb710d (diff) | |
parent | d5a5822e0bf9fbb63d52660ba3f1be33f434cc2f (diff) | |
download | symfony-security-c5a10052d2345676599b8a892d49ccd480c55be0.zip symfony-security-c5a10052d2345676599b8a892d49ccd480c55be0.tar.gz symfony-security-c5a10052d2345676599b8a892d49ccd480c55be0.tar.bz2 |
minor #16697 CS: remove impossible default argument value (keradus)
This PR was merged into the 2.7 branch.
Discussion
----------
CS: remove impossible default argument value
| 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
Commits
-------
acef3a3 CS: remove impossible default argument value
Diffstat (limited to 'Acl')
-rw-r--r-- | Acl/Domain/Acl.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Acl/Domain/Acl.php b/Acl/Domain/Acl.php index f417c8f..fb70738 100644 --- a/Acl/Domain/Acl.php +++ b/Acl/Domain/Acl.php @@ -56,7 +56,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged * @param array $loadedSids * @param bool $entriesInheriting */ - public function __construct($id, ObjectIdentityInterface $objectIdentity, PermissionGrantingStrategyInterface $permissionGrantingStrategy, array $loadedSids = array(), $entriesInheriting) + public function __construct($id, ObjectIdentityInterface $objectIdentity, PermissionGrantingStrategyInterface $permissionGrantingStrategy, array $loadedSids, $entriesInheriting) { $this->id = $id; $this->objectIdentity = $objectIdentity; |