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; |
||
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 |