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