diff options
author | emkael <emkael@tlen.pl> | 2016-03-16 22:56:13 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-03-16 22:56:13 +0100 |
commit | 75dc7a1df808ab2ca93ca96e299b06d90ebcedf6 (patch) | |
tree | 3c7671d8e47b5b68e534ad13ecb5acb9374d4272 /app/php/components/PasswordChange.php | |
parent | c5058d68713fc710c68488db726b05453e18d85d (diff) |
* refactoring, code formatting
Diffstat (limited to 'app/php/components/PasswordChange.php')
-rw-r--r-- | app/php/components/PasswordChange.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/php/components/PasswordChange.php b/app/php/components/PasswordChange.php index d0a90fb..1224f33 100644 --- a/app/php/components/PasswordChange.php +++ b/app/php/components/PasswordChange.php @@ -10,7 +10,9 @@ class PasswordChange extends TTemplateControl { public function setUserToChange(DbUser $user) { if ($user->IsGuest) { - throw new TInvalidDataValueException('Password change impossible for guest user'); + throw new TInvalidDataValueException( + 'Password change impossible for guest user' + ); } $this->setControlState('user', $user); } |