summaryrefslogtreecommitdiffstats
path: root/Acl/Model
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2011-06-08 12:16:48 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2011-06-08 12:16:48 +0200
commit942afaa9c1dfb7011f9c136cb477d6d26a0dd6ce (patch)
treebab79bc2acbab03cb841cb881b56ca669073dd19 /Acl/Model
parent0d1a53126976c957800e4aa1778d902bda4fe1ca (diff)
downloadsymfony-security-942afaa9c1dfb7011f9c136cb477d6d26a0dd6ce.zip
symfony-security-942afaa9c1dfb7011f9c136cb477d6d26a0dd6ce.tar.gz
symfony-security-942afaa9c1dfb7011f9c136cb477d6d26a0dd6ce.tar.bz2
fixed CS
Diffstat (limited to 'Acl/Model')
-rw-r--r--Acl/Model/AclCacheInterface.php2
-rw-r--r--Acl/Model/AclInterface.php2
-rw-r--r--Acl/Model/AclProviderInterface.php2
-rw-r--r--Acl/Model/AuditLoggerInterface.php2
-rw-r--r--Acl/Model/AuditableAclInterface.php2
-rw-r--r--Acl/Model/AuditableEntryInterface.php2
-rw-r--r--Acl/Model/DomainObjectInterface.php2
-rw-r--r--Acl/Model/EntryInterface.php2
-rw-r--r--Acl/Model/FieldEntryInterface.php2
-rw-r--r--Acl/Model/MutableAclInterface.php2
-rw-r--r--Acl/Model/MutableAclProviderInterface.php2
-rw-r--r--Acl/Model/ObjectIdentityInterface.php2
-rw-r--r--Acl/Model/ObjectIdentityRetrievalStrategyInterface.php2
-rw-r--r--Acl/Model/PermissionGrantingStrategyInterface.php2
-rw-r--r--Acl/Model/SecurityIdentityInterface.php2
-rw-r--r--Acl/Model/SecurityIdentityRetrievalStrategyInterface.php2
16 files changed, 16 insertions, 16 deletions
diff --git a/Acl/Model/AclCacheInterface.php b/Acl/Model/AclCacheInterface.php
index 30be707..bc6c11f 100644
--- a/Acl/Model/AclCacheInterface.php
+++ b/Acl/Model/AclCacheInterface.php
@@ -66,4 +66,4 @@ interface AclCacheInterface
* @return void
*/
function clearCache();
-} \ No newline at end of file
+}
diff --git a/Acl/Model/AclInterface.php b/Acl/Model/AclInterface.php
index e8119fe..9094560 100644
--- a/Acl/Model/AclInterface.php
+++ b/Acl/Model/AclInterface.php
@@ -103,4 +103,4 @@ interface AclInterface extends \Serializable
* @return Boolean
*/
function isSidLoaded($securityIdentities);
-} \ No newline at end of file
+}
diff --git a/Acl/Model/AclProviderInterface.php b/Acl/Model/AclProviderInterface.php
index 9d1075d..12f55e0 100644
--- a/Acl/Model/AclProviderInterface.php
+++ b/Acl/Model/AclProviderInterface.php
@@ -46,4 +46,4 @@ interface AclProviderInterface
* @return \SplObjectStorage mapping the passed object identities to ACLs
*/
function findAcls(array $oids, array $sids = array());
-} \ No newline at end of file
+}
diff --git a/Acl/Model/AuditLoggerInterface.php b/Acl/Model/AuditLoggerInterface.php
index a2afd41..dceb76b 100644
--- a/Acl/Model/AuditLoggerInterface.php
+++ b/Acl/Model/AuditLoggerInterface.php
@@ -27,4 +27,4 @@ interface AuditLoggerInterface
* @return void
*/
function logIfNeeded($granted, EntryInterface $ace);
-} \ No newline at end of file
+}
diff --git a/Acl/Model/AuditableAclInterface.php b/Acl/Model/AuditableAclInterface.php
index 953cf0d..2a6d619 100644
--- a/Acl/Model/AuditableAclInterface.php
+++ b/Acl/Model/AuditableAclInterface.php
@@ -60,4 +60,4 @@ interface AuditableAclInterface extends MutableAclInterface
* @return void
*/
function updateObjectFieldAuditing($index, $field, $auditSuccess, $auditFailure);
-} \ No newline at end of file
+}
diff --git a/Acl/Model/AuditableEntryInterface.php b/Acl/Model/AuditableEntryInterface.php
index e79e309..40c4484 100644
--- a/Acl/Model/AuditableEntryInterface.php
+++ b/Acl/Model/AuditableEntryInterface.php
@@ -31,4 +31,4 @@ interface AuditableEntryInterface extends EntryInterface
* @return Boolean
*/
function isAuditSuccess();
-} \ No newline at end of file
+}
diff --git a/Acl/Model/DomainObjectInterface.php b/Acl/Model/DomainObjectInterface.php
index fb89858..50bc4c3 100644
--- a/Acl/Model/DomainObjectInterface.php
+++ b/Acl/Model/DomainObjectInterface.php
@@ -26,4 +26,4 @@ interface DomainObjectInterface
* @return string
*/
function getObjectIdentifier();
-} \ No newline at end of file
+}
diff --git a/Acl/Model/EntryInterface.php b/Acl/Model/EntryInterface.php
index 8de4ff3..6fe0dc8 100644
--- a/Acl/Model/EntryInterface.php
+++ b/Acl/Model/EntryInterface.php
@@ -62,4 +62,4 @@ interface EntryInterface extends \Serializable
* @return Boolean
*/
function isGranting();
-} \ No newline at end of file
+}
diff --git a/Acl/Model/FieldEntryInterface.php b/Acl/Model/FieldEntryInterface.php
index 68aa10c..a35ddb4 100644
--- a/Acl/Model/FieldEntryInterface.php
+++ b/Acl/Model/FieldEntryInterface.php
@@ -24,4 +24,4 @@ interface FieldEntryInterface extends EntryInterface
* @return string
*/
function getField();
-} \ No newline at end of file
+}
diff --git a/Acl/Model/MutableAclInterface.php b/Acl/Model/MutableAclInterface.php
index 9a64709..54a3f8e 100644
--- a/Acl/Model/MutableAclInterface.php
+++ b/Acl/Model/MutableAclInterface.php
@@ -169,4 +169,4 @@ interface MutableAclInterface extends AclInterface
* @return void
*/
function updateObjectFieldAce($index, $field, $mask, $strategy = null);
-} \ No newline at end of file
+}
diff --git a/Acl/Model/MutableAclProviderInterface.php b/Acl/Model/MutableAclProviderInterface.php
index eab1dda..c04eb31 100644
--- a/Acl/Model/MutableAclProviderInterface.php
+++ b/Acl/Model/MutableAclProviderInterface.php
@@ -49,4 +49,4 @@ interface MutableAclProviderInterface extends AclProviderInterface
* @return void
*/
function updateAcl(MutableAclInterface $acl);
-} \ No newline at end of file
+}
diff --git a/Acl/Model/ObjectIdentityInterface.php b/Acl/Model/ObjectIdentityInterface.php
index d4621c1..7e892bf 100644
--- a/Acl/Model/ObjectIdentityInterface.php
+++ b/Acl/Model/ObjectIdentityInterface.php
@@ -46,4 +46,4 @@ interface ObjectIdentityInterface
* @return string cannot return null
*/
function getType();
-} \ No newline at end of file
+}
diff --git a/Acl/Model/ObjectIdentityRetrievalStrategyInterface.php b/Acl/Model/ObjectIdentityRetrievalStrategyInterface.php
index df7a1a9..e53c3da 100644
--- a/Acl/Model/ObjectIdentityRetrievalStrategyInterface.php
+++ b/Acl/Model/ObjectIdentityRetrievalStrategyInterface.php
@@ -25,4 +25,4 @@ interface ObjectIdentityRetrievalStrategyInterface
* @return ObjectIdentityInterface
*/
function getObjectIdentity($domainObject);
-} \ No newline at end of file
+}
diff --git a/Acl/Model/PermissionGrantingStrategyInterface.php b/Acl/Model/PermissionGrantingStrategyInterface.php
index e2277f0..7afdfac 100644
--- a/Acl/Model/PermissionGrantingStrategyInterface.php
+++ b/Acl/Model/PermissionGrantingStrategyInterface.php
@@ -41,4 +41,4 @@ interface PermissionGrantingStrategyInterface
* @return Boolean
*/
function isFieldGranted(AclInterface $acl, $field, array $masks, array $sids, $administrativeMode = false);
-} \ No newline at end of file
+}
diff --git a/Acl/Model/SecurityIdentityInterface.php b/Acl/Model/SecurityIdentityInterface.php
index 778bbbf..1833630 100644
--- a/Acl/Model/SecurityIdentityInterface.php
+++ b/Acl/Model/SecurityIdentityInterface.php
@@ -28,4 +28,4 @@ interface SecurityIdentityInterface
* @return void
*/
function equals(SecurityIdentityInterface $identity);
-} \ No newline at end of file
+}
diff --git a/Acl/Model/SecurityIdentityRetrievalStrategyInterface.php b/Acl/Model/SecurityIdentityRetrievalStrategyInterface.php
index 3353be4..3bbbaa4 100644
--- a/Acl/Model/SecurityIdentityRetrievalStrategyInterface.php
+++ b/Acl/Model/SecurityIdentityRetrievalStrategyInterface.php
@@ -31,4 +31,4 @@ interface SecurityIdentityRetrievalStrategyInterface
* @return array of SecurityIdentityInterface implementations
*/
function getSecurityIdentities(TokenInterface $token);
-} \ No newline at end of file
+}