MyBuilder\Cronos\Formatter\Output::createOutput PHP Метод

createOutput() приватный Метод

private createOutput ( )
    private function createOutput()
    {
        $out = '';
        if ($this->stdOutFile) {
            $out .= $this->redirectStandardOutTo($this->stdOutFile);
        }
        if ($this->stdErrFile) {
            $out .= $this->redirectStandardErrorTo($this->stdErrFile);
        }
        return $out;
    }