| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php namespace Magestead\Command\VM; |
||
| 13 | protected function configure() |
||
| 14 | { |
||
| 15 | $this->_projectPath = getcwd(); |
||
| 16 | |||
| 17 | $this->setName("vm:run"); |
||
| 18 | $this->setDescription("Run commands on your development machine via SSH"); |
||
| 19 | $this->addArgument('ssh-command', InputArgument::REQUIRED, 'The command to pass to the machine.'); |
||
| 20 | } |
||
| 21 | |||
| 35 | } |