diff options
Diffstat (limited to 'Acl')
-rw-r--r-- | Acl/Domain/AclCollectionCache.php | 1 | ||||
-rw-r--r-- | Acl/Model/AclInterface.php | 2 | ||||
-rw-r--r-- | Acl/Model/AclProviderInterface.php | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/Acl/Domain/AclCollectionCache.php b/Acl/Domain/AclCollectionCache.php index d3a4b37..5dfef08 100644 --- a/Acl/Domain/AclCollectionCache.php +++ b/Acl/Domain/AclCollectionCache.php @@ -14,6 +14,7 @@ namespace Symfony\Component\Security\Acl\Domain; use Symfony\Component\Security\Acl\Model\AclProviderInterface; use Symfony\Component\Security\Acl\Model\ObjectIdentityRetrievalStrategyInterface; use Symfony\Component\Security\Acl\Model\SecurityIdentityRetrievalStrategyInterface; +use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; /** * This service caches ACLs for an entire collection of objects. diff --git a/Acl/Model/AclInterface.php b/Acl/Model/AclInterface.php index fffe591..02bbd00 100644 --- a/Acl/Model/AclInterface.php +++ b/Acl/Model/AclInterface.php @@ -11,6 +11,8 @@ namespace Symfony\Component\Security\Acl\Model; +use Symfony\Component\Security\Acl\Exception\NoAceFoundException; + /** * This interface represents an access control list (ACL) for a domain object. * Each domain object can have exactly one associated ACL. diff --git a/Acl/Model/AclProviderInterface.php b/Acl/Model/AclProviderInterface.php index 4be49bf..615cf14 100644 --- a/Acl/Model/AclProviderInterface.php +++ b/Acl/Model/AclProviderInterface.php @@ -11,6 +11,8 @@ namespace Symfony\Component\Security\Acl\Model; +use Symfony\Component\Security\Acl\Exception\AclNotFoundException; + /** * Provides a common interface for retrieving ACLs. * |