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