1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-18 06:11:33 +02:00

bridges: Fix bridges failing unit test

This commit is contained in:
logmanoriginal
2018-08-05 15:53:45 +02:00
parent 6bceb2b2db
commit 5fea9fc1f5
9 changed files with 15 additions and 17 deletions

View File

@@ -157,7 +157,7 @@ class PepperBridgeAbstract extends BridgeAbstract {
/**
* Get the Deal data from the choosen group in the choosed order
*/
public function collectDataGroup()
protected function collectDataGroup()
{
$group = $this->getInput('group');
@@ -171,7 +171,7 @@ class PepperBridgeAbstract extends BridgeAbstract {
/**
* Get the Deal data from the choosen keywords and parameters
*/
public function collectDataKeywords()
protected function collectDataKeywords()
{
$q = $this->getInput('q');
$hide_expired = $this->getInput('hide_expired');
@@ -199,7 +199,7 @@ class PepperBridgeAbstract extends BridgeAbstract {
/**
* Get the Deal data using the given URL
*/
public function collectDeals($url){
protected function collectDeals($url){
$html = getSimpleHTMLDOM($url)
or returnServerError($this->i8n('request-error'));
$list = $html->find('article[id]');
@@ -575,7 +575,7 @@ class PepperBridgeAbstract extends BridgeAbstract {
* the "$lang" class variable in the local class
* @return various the local content needed
*/
public function i8n($key)
protected function i8n($key)
{
if (array_key_exists($key, $this->lang)) {
return $this->lang[$key];