Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class TestBaseActive extends TestBase |
||
12 | { |
||
13 | /** @var MyActiveRecord */ |
||
14 | public $model; |
||
15 | /** |
||
16 | * @return array |
||
17 | */ |
||
18 | public function baseModelAttributes() |
||
19 | { |
||
20 | return [ |
||
21 | 'user_created' => 1, |
||
22 | 'user_updated' => 1, |
||
23 | 'user_closed' => null, |
||
24 | 'time_created' => "2010-10-01", |
||
25 | 'time_updated' => "2010-10-01", |
||
26 | 'time_closed' => null, |
||
27 | |||
28 | ]; |
||
29 | } |
||
30 | |||
31 | |||
32 | |||
33 | public function testModelName() { |
||
35 | } |
||
36 | |||
37 | } |