Bugfix: Class 'RainLoop\Model\Notifications' not found

This commit is contained in:
djmaze 2021-12-08 23:38:22 +01:00
parent e25ffcacd6
commit 8b96145df6
2 changed files with 2 additions and 1 deletions

View file

@ -222,7 +222,7 @@ trait UserAuth
}
if ($bThrowExceptionOnFalse && !$this->oMainAuthAccount) {
throw new ClientException(\RainLoop\Notifications::AuthError);
throw new ClientException(Notifications::AuthError);
}
}

View file

@ -3,6 +3,7 @@
namespace RainLoop\Model;
use RainLoop\Utils;
use RainLoop\Notifications;
use RainLoop\Exceptions\ClientException;
abstract class Account implements \JsonSerializable