Renamed AccountComponent

This commit is contained in:
Pierre 2018-04-15 14:41:41 +02:00
parent 265944ff49
commit 7bd9ed3d8e

View File

@ -5,7 +5,7 @@
* @author Pierre HUBERT * @author Pierre HUBERT
*/ */
class Account { class AccountComponent {
/** /**
* @var String $userTable The name of the user table * @var String $userTable The name of the user table
@ -39,7 +39,7 @@ class Account {
$email, $email,
$this->cryptPassword($password) $this->cryptPassword($password)
); );
$userInfos = CS::get()->db->select(Account::USER_TABLE, $conditions, $values); $userInfos = CS::get()->db->select(self::USER_TABLE, $conditions, $values);
//Check if there is anything //Check if there is anything
if(count($userInfos) == 0) if(count($userInfos) == 0)
@ -210,4 +210,4 @@ class Account {
} }
//Register class //Register class
Components::register("account", new Account()); Components::register("account", new AccountComponent());