mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-12 11:34:09 +02:00
[bridges] use constants instead of variable members
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
<?php
|
||||
class ABCTabsBridge extends BridgeAbstract{
|
||||
|
||||
public $maintainer = "kranack";
|
||||
public $name = "ABC Tabs Bridge";
|
||||
public $uri = "http://www.abc-tabs.com/";
|
||||
public $description = "Returns 22 newest tabs";
|
||||
const MAINTAINER = "kranack";
|
||||
const NAME = "ABC Tabs Bridge";
|
||||
const URI = "http://www.abc-tabs.com/";
|
||||
const DESCRIPTION = "Returns 22 newest tabs";
|
||||
|
||||
public function collectData(){
|
||||
$html = '';
|
||||
|
Reference in New Issue
Block a user