| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 30 | class DummyActiveRecord extends BaseActiveRecord |
||
| 31 | { |
||
| 32 | public static function tableName(): string |
||
| 33 | { |
||
| 34 | return 'dummy'; |
||
| 35 | } |
||
| 36 | |||
| 37 | public function primaryKey(): array |
||
| 40 | } |
||
| 41 | |||
| 42 | public function attributes(): array |
||
| 45 | } |
||
| 46 | |||
| 47 | public function insert(?array $attributes = null): bool |
||
| 50 | } |
||
| 51 | } |
||
| 52 |