mirror of
https://github.com/pierre42100/ComunicAPI
synced 2024-11-23 22:09:29 +00:00
Renamed AccountComponent
This commit is contained in:
parent
265944ff49
commit
7bd9ed3d8e
@ -5,7 +5,7 @@
|
||||
* @author Pierre HUBERT
|
||||
*/
|
||||
|
||||
class Account {
|
||||
class AccountComponent {
|
||||
|
||||
/**
|
||||
* @var String $userTable The name of the user table
|
||||
@ -39,7 +39,7 @@ class Account {
|
||||
$email,
|
||||
$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
|
||||
if(count($userInfos) == 0)
|
||||
@ -210,4 +210,4 @@ class Account {
|
||||
}
|
||||
|
||||
//Register class
|
||||
Components::register("account", new Account());
|
||||
Components::register("account", new AccountComponent());
|
Loading…
Reference in New Issue
Block a user