Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class DonationController extends AbstractController |
||
9 | { |
||
10 | private DonationRepository $donationRepository; |
||
11 | |||
12 | public function __construct(DonationRepository $donationRepository) |
||
13 | { |
||
14 | $this->donationRepository = $donationRepository; |
||
15 | } |
||
16 | |||
17 | /** |
||
18 | * @return mixed |
||
19 | */ |
||
20 | public function donors() |
||
23 | } |
||
24 | } |
||
25 |