Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | final class ReportSender implements ReportSenderInterface |
||
13 | { |
||
14 | /** @var ServiceRegistryInterface */ |
||
15 | private $transportRegistry; |
||
16 | |||
17 | public function __construct(ServiceRegistryInterface $transportRegistry) |
||
18 | { |
||
19 | $this->transportRegistry = $transportRegistry; |
||
20 | } |
||
21 | |||
22 | public function send(string $file, ReportInterface $report, ReportConfigurationInterface $reportConfiguration): void |
||
29 | } |
||
30 | } |
||
32 |