Author: Stuart Herbert (stuart.herbert@datasift.com)
Inheritance: extends Console
Beispiel #1
0
 /**
  * constructor
  *
  * ensures we have a default console that is connected to stdout
  */
 public function __construct()
 {
     // we need a default output for the console
     $console = new DefaultConsole();
     $console->addOutputToStdout();
     $this->usePluginAsConsole($console);
 }