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