| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | final class NewMandate implements StateInterface, ExportableStateInterface |
||
| 30 | { |
||
| 31 | use StateIdTrait; |
||
| 32 | |||
| 33 | public function getDescription(): string |
||
| 34 | { |
||
| 35 | return 'A mandate has been received from the donor'; |
||
| 36 | } |
||
| 37 | |||
| 38 | public function exportToAutogiro(Donor $donor, WriterInterface $writer): void |
||
| 41 | } |
||
| 42 | } |
||
| 43 |