| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | final class FunnelState |
||
| 18 | { |
||
| 19 | private $entity; |
||
| 20 | |||
| 21 | private int $step; |
||
| 22 | |||
| 23 | public function getEntity() |
||
| 26 | } |
||
| 27 | |||
| 28 | public function setEntity($entity): self |
||
| 29 | { |
||
| 30 | $this->entity = $entity; |
||
| 31 | |||
| 32 | return $this; |
||
| 33 | } |
||
| 34 | |||
| 35 | public function getStep(): int |
||
| 38 | } |
||
| 39 | |||
| 40 | public function setStep($step): self |
||
| 47 |