MathiasGrimm\LaravelLogKeeper\Repos\RemoteLogsRepo::getLogs PHP Method

getLogs() public method

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