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

getLogs() public method

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