summaryrefslogtreecommitdiffstats
path: root/Acl/Model
diff options
context:
space:
mode:
Diffstat (limited to 'Acl/Model')
-rw-r--r--Acl/Model/AclInterface.php2
-rw-r--r--Acl/Model/AclProviderInterface.php2
2 files changed, 4 insertions, 0 deletions
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.
*