mirror of
https://github.com/elyby/accounts.git
synced 2024-11-19 11:43:07 +05:30
22 lines
423 B
PHP
22 lines
423 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace common\models;
|
||
|
|
||
|
use yii\db\ActiveQuery;
|
||
|
|
||
|
/**
|
||
|
* @see Account
|
||
|
*/
|
||
|
class AccountQuery extends ActiveQuery {
|
||
|
|
||
|
public function andWhereLogin(string $login): self {
|
||
|
return $this->andWhere([$this->getLoginAttribute($login) => $login]);
|
||
|
}
|
||
|
|
||
|
private function getLoginAttribute(string $login): string {
|
||
|
return strpos($login, '@') ? 'email' : 'username';
|
||
|
}
|
||
|
|
||
|
}
|