| Total Complexity | 5 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | final class CombinedFilter implements FilterInterface |
||
| 29 | { |
||
| 30 | /** @var FilterInterface[] */ |
||
| 31 | private $filters; |
||
| 32 | |||
| 33 | public function __construct(FilterInterface ...$filters) |
||
| 34 | { |
||
| 35 | $this->filters = $filters; |
||
| 36 | } |
||
| 37 | |||
| 38 | public function getName(): string |
||
| 39 | { |
||
| 40 | return ''; |
||
| 41 | } |
||
| 42 | |||
| 43 | public function filterDonor(Donor $donor): bool |
||
| 52 | } |
||
| 53 | } |
||
| 54 |