mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-12 03:24:01 +02:00
[phpcs] enforce single quotes (#732)
* [phpcs] Add rule to enforce single quoted strings
This commit is contained in:
@@ -8,7 +8,7 @@ class SuperSmashBlogBridge extends BridgeAbstract {
|
||||
const DESCRIPTION = 'Latest articles from the Super Smash Blog blog';
|
||||
|
||||
public function collectData(){
|
||||
$dlUrl = "https://www.smashbros.com/data/bs/en_US/json/en_US.json";
|
||||
$dlUrl = 'https://www.smashbros.com/data/bs/en_US/json/en_US.json';
|
||||
|
||||
$jsonString = getContents($dlUrl) or returnServerError('Error while downloading the website content');
|
||||
$json = json_decode($jsonString, true);
|
||||
|
Reference in New Issue
Block a user