summaryrefslogtreecommitdiffstats
path: root/Acl/Model/AclProviderInterface.php
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2012-07-09 14:50:58 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2012-07-09 14:54:20 +0200
commit1c06ef124bde94f6b29634801b84ea9fa9149c31 (patch)
treefa4af2ca5aeb42b2b14cb3a3e8213e0c8b864dce /Acl/Model/AclProviderInterface.php
parentf5719bac71c1b44dfdd48ccc9249edfde94c3204 (diff)
downloadsymfony-security-1c06ef124bde94f6b29634801b84ea9fa9149c31.zip
symfony-security-1c06ef124bde94f6b29634801b84ea9fa9149c31.tar.gz
symfony-security-1c06ef124bde94f6b29634801b84ea9fa9149c31.tar.bz2
fixed CS
Diffstat (limited to 'Acl/Model/AclProviderInterface.php')
-rw-r--r--Acl/Model/AclProviderInterface.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/Acl/Model/AclProviderInterface.php b/Acl/Model/AclProviderInterface.php
index 2f878e1..bdb40b7 100644
--- a/Acl/Model/AclProviderInterface.php
+++ b/Acl/Model/AclProviderInterface.php
@@ -25,7 +25,7 @@ interface AclProviderInterface
* @param Boolean $directChildrenOnly
* @return array returns an array of child 'ObjectIdentity's
*/
- function findChildren(ObjectIdentityInterface $parentOid, $directChildrenOnly = false);
+ public function findChildren(ObjectIdentityInterface $parentOid, $directChildrenOnly = false);
/**
* Returns the ACL that belongs to the given object identity
@@ -35,7 +35,7 @@ interface AclProviderInterface
* @param array $sids
* @return AclInterface
*/
- function findAcl(ObjectIdentityInterface $oid, array $sids = array());
+ public function findAcl(ObjectIdentityInterface $oid, array $sids = array());
/**
* Returns the ACLs that belong to the given object identities
@@ -45,5 +45,5 @@ interface AclProviderInterface
* @param array $sids an array of SecurityIdentityInterface implementations
* @return \SplObjectStorage mapping the passed object identities to ACLs
*/
- function findAcls(array $oids, array $sids = array());
+ public function findAcls(array $oids, array $sids = array());
}