woeler/eso-news-fetcher

A library to fetch news from ESO related websites.

v4.3.1 2024-08-21 08:09 UTC

README

A PHP library that fetches news about The Elder Scrolls Online in an OOP way.

Installation

composer require woeler/eso-news-fetcher

Usage

Getting official news

$f = new \Woeler\EsoNewsFetcher\Fetcher\NewsFetcher();

foreach ($f->fetchAll(true) as $article) {
    echo $article->getTitle();
    echo $article->getImage();
    echo $article->getDescription();
}

Getting live patch notes

$f = new \Woeler\EsoNewsFetcher\Fetcher\LivePatchNotesFetcher();

foreach ($f->fetchAll(true) as $article) {
    echo $article->getTitle();
    echo $article->getImage();
    echo $article->getDescription();
}

Getting pts patch notes

$f = new \Woeler\EsoNewsFetcher\Fetcher\PtsPatchNotesFetcher();

foreach ($f->fetchAll(true) as $article) {
    echo $article->getTitle();
    echo $article->getImage();
    echo $article->getDescription();
}