Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function send(string $file, array $configuration, ReportInterface $report, ReportConfigurationInterface $reportConfiguration): void |
||
24 | { |
||
25 | $configuration['root'] = $configuration['path'] ?? null; |
||
26 | |||
27 | $filesystem = new Filesystem(new Ftp($configuration)); |
||
28 | $filesystem->putStream($file, $this->filesystem->readStream($file)); |
||
29 | } |
||
31 |