Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | class Token extends ActiveRecord |
||
25 | { |
||
26 | use SoftDeleteTrait; |
||
27 | |||
28 | /** |
||
29 | * @inheritdoc |
||
30 | * |
||
31 | * @return string |
||
32 | */ |
||
33 | public static function tableName(): string |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * Returns the entry’s element. |
||
40 | * |
||
41 | * @return ActiveQueryInterface The relational query object. |
||
42 | */ |
||
43 | public function getElement(): ActiveQueryInterface |
||
46 | } |
||
47 | } |