Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | final class FtpTransport implements TransportInterface |
||
18 | { |
||
19 | /** @var FilesystemInterface */ |
||
20 | private $filesystem; |
||
21 | |||
22 | public function __construct(FilesystemInterface $filesystem) |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @throws FileNotFoundException |
||
29 | * @throws StringsException |
||
30 | */ |
||
31 | public function send(string $file, array $configuration, ReportInterface $report, ReportConfigurationInterface $reportConfiguration): void |
||
44 |