mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-11 11:04:36 +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 TheHackerNewsBridge extends BridgeAbstract {
|
||||
|
||||
public $maintainer = 'ORelio';
|
||||
public $name = 'The Hacker News Bridge';
|
||||
public $uri = 'https://thehackernews.com/';
|
||||
public $description = 'Cyber Security, Hacking, Technology News.';
|
||||
const MAINTAINER = 'ORelio';
|
||||
const NAME = 'The Hacker News Bridge';
|
||||
const URI = 'https://thehackernews.com/';
|
||||
const DESCRIPTION = 'Cyber Security, Hacking, Technology News.';
|
||||
|
||||
public function collectData(){
|
||||
|
||||
|
Reference in New Issue
Block a user