| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public function __construct(Donor $donor, StateInterface $newState, string $desc) |
||
| 38 | { |
||
| 39 | parent::__construct( |
||
| 40 | sprintf( |
||
| 41 | "Changed state on mandate '%s' to '%s'", |
||
| 42 | $donor->getMandateKey(), |
||
| 43 | $newState->getStateId() |
||
| 44 | ), |
||
| 45 | $donor |
||
| 46 | ); |
||
| 47 | |||
| 48 | $this->newState = $newState; |
||
| 49 | $this->desc = $desc; |
||
| 50 | } |
||
| 62 |