| Total Complexity | 3 | 
| Total Lines | 25 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 29 | final class UpdateDonationAmount  | 
            ||
| 30 | { | 
            ||
| 31 | use Helper\DonorAwareTrait;  | 
            ||
| 32 | |||
| 33 | /** @var Money */  | 
            ||
| 34 | private $newAmount;  | 
            ||
| 35 | |||
| 36 | /** @var string */  | 
            ||
| 37 | private $updateDesc;  | 
            ||
| 38 | |||
| 39 | public function __construct(Donor $donor, Money $newAmount, string $updateDesc)  | 
            ||
| 44 | }  | 
            ||
| 45 | |||
| 46 | public function getNewAmount(): Money  | 
            ||
| 49 | }  | 
            ||
| 50 | |||
| 51 | public function getUpdateDescription(): string  | 
            ||
| 56 |