Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
27 | 3 | protected static function defaultOps(): array |
|
28 | { |
||
29 | 3 | return array_merge( |
|
30 | 3 | parent::defaultOps(), |
|
31 | [ |
||
32 | 3 | 'title' => 'Untitled', |
|
33 | 'subtitle' => null, |
||
34 | 'content' => 'Article content', |
||
35 | 'filePath' => null, |
||
36 | 'layout' => null, |
||
37 | 'parent' => null, |
||
38 | 'metaDescription' => null |
||
39 | ] |
||
43 |