forked from blallo/rss-bridge
[AnimeUltime] Simple tab/space fix in source file
Don't have anything against tabs but let's keep concistent at least on a per-file scope - this simlply replaces tabs with spaces as this file is using spaces for code indentation.
This commit is contained in:
parent
91fe6c4acc
commit
4ccd1b84e5
1 changed files with 34 additions and 33 deletions
|
@ -5,11 +5,11 @@ class AnimeUltimeBridge extends BridgeAbstract {
|
||||||
|
|
||||||
public function loadMetadatas() {
|
public function loadMetadatas() {
|
||||||
|
|
||||||
$this->maintainer = "ORelio";
|
$this->maintainer = 'ORelio';
|
||||||
$this->name = "Anime-Ultime";
|
$this->name = 'Anime-Ultime';
|
||||||
$this->uri = "http://www.anime-ultime.net/";
|
$this->uri = 'http://www.anime-ultime.net/';
|
||||||
$this->description = "Returns the 10 newest releases posted on Anime-Ultime";
|
$this->description = 'Returns the 10 newest releases posted on Anime-Ultime';
|
||||||
$this->update = "2015-10-30";
|
$this->update = '2015-10-30';
|
||||||
|
|
||||||
$this->parameters[] =
|
$this->parameters[] =
|
||||||
'[
|
'[
|
||||||
|
@ -17,9 +17,10 @@ class AnimeUltimeBridge extends BridgeAbstract {
|
||||||
"name" : "Type",
|
"name" : "Type",
|
||||||
"type" : "list",
|
"type" : "list",
|
||||||
"identifier" : "type",
|
"identifier" : "type",
|
||||||
"values" : [
|
"values" :
|
||||||
|
[
|
||||||
{
|
{
|
||||||
"name" : "everything",
|
"name" : "Everything",
|
||||||
"value" : ""
|
"value" : ""
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue