NyanCat\PHPUnit\ResultPrinter::__construct PHP Method

__construct() public method

public __construct ( $out = NULL, $verbose = FALSE, $colors = FALSE, $debug = FALSE )
    public function __construct($out = NULL, $verbose = FALSE, $colors = FALSE, $debug = FALSE)
    {
        $this->scoreboard = new Scoreboard(new Cat(), new Rainbow(FabFactory::getFab(empty($_SERVER['TERM']) ? 'unknown' : $_SERVER['TERM'])), array(new Team('pass', 'green', '^'), new Team('fail', 'red', 'o'), new Team('pending', 'cyan', '-')), 5, array($this, 'write'));
        parent::__construct($out, $verbose, true, $debug);
    }