mirror of
https://github.com/elyby/accounts.git
synced 2024-12-03 12:10:57 +05:30
20 lines
320 B
PHP
20 lines
320 B
PHP
|
<?php
|
||
|
namespace api\components\ApiUser;
|
||
|
|
||
|
use yii\web\User as YiiUserComponent;
|
||
|
|
||
|
/**
|
||
|
* @property Identity|null $identity
|
||
|
*
|
||
|
* @method Identity|null getIdentity()
|
||
|
*/
|
||
|
class Component extends YiiUserComponent {
|
||
|
|
||
|
public $identity = Identity::class;
|
||
|
|
||
|
public $enableSession = false;
|
||
|
|
||
|
public $loginUrl = null;
|
||
|
|
||
|
}
|