summaryrefslogtreecommitdiffstats
path: root/Core/User/AdvancedUserInterface.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 /Core/User/AdvancedUserInterface.php
parentf5719bac71c1b44dfdd48ccc9249edfde94c3204 (diff)
downloadsymfony-security-1c06ef124bde94f6b29634801b84ea9fa9149c31.zip
symfony-security-1c06ef124bde94f6b29634801b84ea9fa9149c31.tar.gz
symfony-security-1c06ef124bde94f6b29634801b84ea9fa9149c31.tar.bz2
fixed CS
Diffstat (limited to 'Core/User/AdvancedUserInterface.php')
-rw-r--r--Core/User/AdvancedUserInterface.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/Core/User/AdvancedUserInterface.php b/Core/User/AdvancedUserInterface.php
index e951c65..5b3a51a 100644
--- a/Core/User/AdvancedUserInterface.php
+++ b/Core/User/AdvancedUserInterface.php
@@ -47,7 +47,7 @@ interface AdvancedUserInterface extends UserInterface
*
* @see AccountExpiredException
*/
- function isAccountNonExpired();
+ public function isAccountNonExpired();
/**
* Checks whether the user is locked.
@@ -59,7 +59,7 @@ interface AdvancedUserInterface extends UserInterface
*
* @see LockedException
*/
- function isAccountNonLocked();
+ public function isAccountNonLocked();
/**
* Checks whether the user's credentials (password) has expired.
@@ -71,7 +71,7 @@ interface AdvancedUserInterface extends UserInterface
*
* @see CredentialsExpiredException
*/
- function isCredentialsNonExpired();
+ public function isCredentialsNonExpired();
/**
* Checks whether the user is enabled.
@@ -83,5 +83,5 @@ interface AdvancedUserInterface extends UserInterface
*
* @see DisabledException
*/
- function isEnabled();
+ public function isEnabled();
}