| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 18 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 13 | 
| CRAP Score | 1 | 
| Changes | 0 | ||
| 1 | <?php | ||
| 24 | 8 | protected function configure() | |
| 25 |     { | ||
| 26 | $this | ||
| 27 | 8 |             ->setName('set-up-workspace') | |
| 28 | 8 | ->addArgument( | |
| 29 | 8 | 'project-root-dir', | |
| 30 | 8 | InputArgument::OPTIONAL, | |
| 31 | 8 | 'Project root directory in host machine. Default is current directory' | |
| 32 | ) | ||
| 33 | 8 | ->addOption( | |
| 34 | 8 | 'composer-executable', | |
| 35 | 8 | null, | |
| 36 | 8 | InputOption::VALUE_OPTIONAL, | |
| 37 | 8 | 'Composer executable', | |
| 38 | 8 | 'composer' | |
| 39 | ) | ||
| 40 | ; | ||
| 41 | 8 | } | |
| 42 | |||
| 61 |