Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 60% |
Changes | 0 |
1 | <?php |
||
20 | class Page extends AbstractContent implements RouteAwareInterface |
||
21 | { |
||
22 | use RouteAwareTrait; |
||
23 | use PageTrait; |
||
24 | |||
25 | /** |
||
26 | * @ApiProperty() |
||
27 | * @Groups({"content","route"}) |
||
28 | */ |
||
29 | public function isDynamic() |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @Groups({"default"}) |
||
36 | */ |
||
37 | protected $componentLocations; |
||
38 | |||
39 | 5 | public function __construct() |
|
45 |