Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | protected function execute(InputInterface $input, OutputInterface $output) |
||
33 | { |
||
34 | $file = $input->getArgument('file'); |
||
35 | $exporter = new PlaylistExporter($this->getContainer()->get('database_connection')); |
||
36 | $exporter->exportToFile($file); |
||
37 | $output->writeln("Wrote playlist to $file"); |
||
38 | } |
||
39 | } |
||
40 |