diff options
Diffstat (limited to 'lib/public/Accounts')
-rw-r--r-- | lib/public/Accounts/IAccount.php | 1 | ||||
-rw-r--r-- | lib/public/Accounts/IAccountManager.php | 1 | ||||
-rw-r--r-- | lib/public/Accounts/IAccountProperty.php | 1 | ||||
-rw-r--r-- | lib/public/Accounts/PropertyDoesNotExistException.php | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/lib/public/Accounts/IAccount.php b/lib/public/Accounts/IAccount.php index 6bf4988a9f1..a389ce5fddb 100644 --- a/lib/public/Accounts/IAccount.php +++ b/lib/public/Accounts/IAccount.php @@ -88,5 +88,4 @@ interface IAccount extends \JsonSerializable { * @return IUser */ public function getUser(): IUser; - } diff --git a/lib/public/Accounts/IAccountManager.php b/lib/public/Accounts/IAccountManager.php index eaa394de8b8..9d02e0b43c0 100644 --- a/lib/public/Accounts/IAccountManager.php +++ b/lib/public/Accounts/IAccountManager.php @@ -65,5 +65,4 @@ interface IAccountManager { * @return IAccount */ public function getAccount(IUser $user): IAccount; - } diff --git a/lib/public/Accounts/IAccountProperty.php b/lib/public/Accounts/IAccountProperty.php index c7213e278a6..0cab4d0203e 100644 --- a/lib/public/Accounts/IAccountProperty.php +++ b/lib/public/Accounts/IAccountProperty.php @@ -99,5 +99,4 @@ interface IAccountProperty extends \JsonSerializable { * @return string */ public function getVerified(): string; - } diff --git a/lib/public/Accounts/PropertyDoesNotExistException.php b/lib/public/Accounts/PropertyDoesNotExistException.php index e9e57dd8779..dccdcea1887 100644 --- a/lib/public/Accounts/PropertyDoesNotExistException.php +++ b/lib/public/Accounts/PropertyDoesNotExistException.php @@ -40,5 +40,4 @@ class PropertyDoesNotExistException extends \Exception { public function __construct($property) { parent::__construct('Property ' . $property . ' does not exist.'); } - } |