| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | final class AttemptState |
||
| 28 | { |
||
| 29 | use Helper\DonorAwareTrait; |
||
| 30 | |||
| 31 | /** @var string */ |
||
| 32 | private $transitionId; |
||
| 33 | |||
| 34 | /** @var string */ |
||
| 35 | private $desc; |
||
| 36 | |||
| 37 | public function __construct(Donor $donor, string $transitionId, string $desc) |
||
| 42 | } |
||
| 43 | |||
| 44 | public function getTransitionId(): string |
||
| 47 | } |
||
| 48 | |||
| 49 | public function getUpdateDescription(): string |
||
| 54 |