Phrozn\Runner\CommandLine\Callback\Base::getOutputter PHP Method

getOutputter() public method

Get CLI outputter
public getOutputter ( ) : Console_CommandLine_Outputter
return Console_CommandLine_Outputter CLI outputter instance
    public function getOutputter()
    {
        if (null === $this->outputter) {
            $this->outputter = new Outputter();
        }
        return $this->outputter;
    }