Conditions | 2 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | public function handle() |
||
32 | { |
||
33 | try{ |
||
34 | ini_set('memory_limit', '-1'); |
||
35 | (new ExaminationStudentsExport)->queue('/examination/student_data_with_nsid.csv')->chain([ |
||
36 | (new ExportReady($this->user)) |
||
37 | ]); |
||
38 | |||
39 | }catch(\Exception $e){ |
||
40 | $output = new \Symfony\Component\Console\Output\ConsoleOutput(); |
||
41 | $output->writeln($e->getMessage()); |
||
42 | } |
||
45 |