| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | final class DescendingSorter implements SorterInterface |
||
| 29 | { |
||
| 30 | /** @var SorterInterface */ |
||
| 31 | private $wrapped; |
||
| 32 | |||
| 33 | public function __construct(SorterInterface $wrapped) |
||
| 34 | { |
||
| 35 | $this->wrapped = $wrapped; |
||
| 36 | } |
||
| 37 | |||
| 38 | public function getName(): string |
||
| 39 | { |
||
| 40 | return ''; |
||
| 41 | } |
||
| 42 | |||
| 43 | public function compareDonors(Donor $left, Donor $right): int |
||
| 46 | } |
||
| 47 | } |
||
| 48 |