| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Magestead\Command\Redis; |
||
| 29 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 30 | { |
||
| 31 | $output->writeln('<info>Flushing Redis Storage</info>'); |
||
| 32 | |||
| 33 | $command = "redis-cli flushall"; |
||
| 34 | $pCommand = "vagrant ssh -c '". $command ."'"; |
||
| 35 | return new ProcessCommand($pCommand, $this->_projectPath, $output); |
||
| 36 | } |
||
| 37 | } |
||
| 38 |