MathiasGrimm\LaravelLogKeeper\Repos\RemoteLogsRepo::getLogs PHP 메소드

getLogs() 공개 메소드

public getLogs ( )
    public function getLogs()
    {
        $allLogs = $this->disk->files($this->remotePath);
        $logs = LogUtil::getLogs($allLogs);
        $logs = LogUtil::mapBasename($logs);
        return $logs;
    }