Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mzeis/5308602 to your computer and use it in GitHub Desktop.
Save mzeis/5308602 to your computer and use it in GitHub Desktop.
<?php
$input = new StringInput('cache:flush');
// ensure that n98-magerun doesn't stop after first command
$this->getApplication()->setAutoExit(false);
// without output
$this->getApplication()->run($input, new NullOutput());
// with output
$this->getApplication()->run($input, $output);
// reactivate auto-exit
$this->getApplication()->setAutoExit(true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment