| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class FeatureStacked extends AbstractFeature |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @Groups({"component", "content"}) |
||
| 22 | * @var bool |
||
| 23 | */ |
||
| 24 | protected $reverse = false; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return FeatureItemInterface |
||
| 28 | */ |
||
| 29 | public function createItem(): FeatureItemInterface |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return bool |
||
| 36 | */ |
||
| 37 | public function isReverse(): bool |
||
| 38 | { |
||
| 39 | return $this->reverse; |
||
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @param bool $reverse |
||
| 44 | */ |
||
| 45 | public function setReverse(bool $reverse): void |
||
| 48 | } |
||
| 49 | } |
||
| 50 |