| 1 | <?php |
||
| 17 | class TokenQuery extends ActiveQuery |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @param $userId |
||
| 21 | * |
||
| 22 | * @return $this |
||
| 23 | */ |
||
| 24 | 2 | public function whereUserId($userId) |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @param $code |
||
| 31 | * |
||
| 32 | * @return $this |
||
| 33 | */ |
||
| 34 | 2 | public function whereCode($code) |
|
| 38 | |||
| 39 | /** |
||
| 40 | * @return $this |
||
| 41 | */ |
||
| 42 | public function whereIsRecoveryType() |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return $this |
||
| 49 | */ |
||
| 50 | 1 | public function whereIsConfirmationType() |
|
| 54 | |||
| 55 | /** |
||
| 56 | * @param array $types |
||
| 57 | * |
||
| 58 | * @return $this |
||
| 59 | */ |
||
| 60 | 1 | public function whereIsTypes(array $types) |
|
| 64 | } |
||
| 65 |