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