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