Reformat codebase v4 (#2872)

Reformat code base to PSR12

Co-authored-by: rssbridge <noreply@github.com>
This commit is contained in:
Dag 2022-07-01 15:10:30 +02:00 committed by GitHub
parent 66568e3a39
commit 4f75591060
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
398 changed files with 58607 additions and 56442 deletions

View file

@ -1,27 +1,28 @@
<?php
class NFLRUSBridge extends BridgeAbstract {
class NFLRUSBridge extends BridgeAbstract
{
const NAME = 'NFLRUS';
const URI = 'http://nflrus.ru/';
const DESCRIPTION = 'Returns the recent articles published on nflrus.ru';
const MAINTAINER = 'Maxim Shpak';
const NAME = 'NFLRUS';
const URI = 'http://nflrus.ru/';
const DESCRIPTION = 'Returns the recent articles published on nflrus.ru';
const MAINTAINER = 'Maxim Shpak';
public function collectData()
{
$html = getSimpleHTMLDOM(self::URI);
$html = defaultLinkTo($html, self::URI);
public function collectData() {
$html = getSimpleHTMLDOM(self::URI);
$html = defaultLinkTo($html, self::URI);
$articles = $html->find('.big-post_content-col');
$articles = $html->find('.big-post_content-col');
foreach ($articles as $article) {
$item = [];
foreach($articles as $article) {
$item = array();
$url = $article->find('.big-post_title.card-title a', 0);
$url = $article->find('.big-post_title.card-title a', 0);
$item['uri'] = $url->href;
$item['title'] = $url->plaintext;
$item['content'] = $article->find('div', 0)->innertext;
$this->items[] = $item;
}
}
$item['uri'] = $url->href;
$item['title'] = $url->plaintext;
$item['content'] = $article->find('div', 0)->innertext;
$this->items[] = $item;
}
}
}