Jobby\BackgroundJob::getLogfile PHP Метод

getLogfile() защищенный Метод

protected getLogfile ( ) : string
Результат string
    protected function getLogfile()
    {
        if ($this->config['output'] === null) {
            return false;
        }
        $logfile = $this->config['output'];
        $logs = dirname($logfile);
        if (!file_exists($logs)) {
            mkdir($logs, 0755, true);
        }
        return $logfile;
    }