Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | class ExecQuery extends ActiveQuery |
||
18 | { |
||
19 | /** |
||
20 | * @inheritdoc |
||
21 | */ |
||
22 | public function init() |
||
23 | { |
||
24 | parent::init(); |
||
25 | $this->alias('exec'); |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @inheritdoc |
||
30 | * @return ExecRecord[]|array |
||
31 | */ |
||
32 | public function all($db = null) |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @inheritdoc |
||
39 | * @return ExecRecord|array|null |
||
40 | */ |
||
41 | public function one($db = null) |
||
44 | } |
||
45 | } |
||
46 |