Completed
Push — master ( 6ff6d1...70482c )
by Alexey
02:17
created

UserQuery::byUsername()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
namespace yiicod\auth\models;
3
4
use yii\db\ActiveQuery;
5
6
class UserQuery extends ActiveQuery implements UserQueryInterface
7
{
8
    public function identity()
9
    {
10
        return $this;
11
    }
12
13
    public function byUsername()
14
    {
15
        return $this;
16
    }
17
18
    public function byPasswordResetToken()
19
    {
20
        return $this;
21
    }
22
23
    public function byPasswordResetRequest()
24
    {
25
        return $this;
26
    }
27
}