mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-05 10:34:55 +02:00
phpcs: Fix violations
This commit is contained in:
parent
e295dc5a79
commit
392e3ff6c7
30 changed files with 76 additions and 76 deletions
|
@ -117,7 +117,7 @@ class NineGagBridge extends BridgeAbstract {
|
|||
$cursor = 'c=10';
|
||||
$posts = array();
|
||||
for ($i = 0; $i < $this->getPages(); ++$i) {
|
||||
$content = getContents($url.$cursor);
|
||||
$content = getContents($url . $cursor);
|
||||
$json = json_decode($content, true);
|
||||
$posts = array_merge($posts, $json['data']['posts']);
|
||||
$cursor = $json['data']['nextCursor'];
|
||||
|
@ -156,7 +156,7 @@ class NineGagBridge extends BridgeAbstract {
|
|||
$uri = $this->getInput('t');
|
||||
}
|
||||
|
||||
return self::URI.$uri;
|
||||
return self::URI . $uri;
|
||||
}
|
||||
|
||||
protected function getGroup() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue