| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 7 | abstract class Behavior implements BehaviorInterface |
||
| 8 | { |
||
| 9 | private TariffTypeInterface $tariffType; |
||
| 10 | |||
| 11 | public function setTariffType(TariffTypeInterface $tariffTypeName): void |
||
| 12 | { |
||
| 13 | $this->tariffType = $tariffTypeName; |
||
| 14 | } |
||
| 15 | |||
| 16 | public function getTariffType(): TariffTypeInterface |
||
| 19 | } |
||
| 20 | |||
| 21 | abstract public function description(): string; |
||
| 22 | } |
||
| 23 |