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