Conditions | 6 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
41 | private function createArgumentsFromOptions(): SchemaCrawlerArguments |
||
42 | { |
||
43 | return new SchemaCrawlerArguments( |
||
44 | $this->hasOption('output-file') ? $this->option('output-file') : null, |
||
45 | $this->hasOption('output-format') ? $this->option('output-format') : null, |
||
46 | $this->hasOption('connection') ? $this->option('connection') : null, |
||
47 | $this->hasOption('info-level') ? $this->option('info-level') : null, |
||
48 | $this->hasOption('command') ? $this->option('command') : null |
||
49 | ); |
||
50 | } |
||
51 | } |
||
52 |