From ec7ef8f5026681ca0624992aad2fa4d6715ca003 Mon Sep 17 00:00:00 2001 From: Kirill Kotikov Date: Sat, 21 Mar 2020 05:07:38 +0300 Subject: [PATCH] Update GithubTrendingBridge.php --- bridges/GithubTrendingBridge.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bridges/GithubTrendingBridge.php b/bridges/GithubTrendingBridge.php index 534caa10..24295754 100644 --- a/bridges/GithubTrendingBridge.php +++ b/bridges/GithubTrendingBridge.php @@ -596,7 +596,6 @@ class GithubTrendingBridge extends BridgeAbstract { ); - public function collectData(){ $params = array('since' => urlencode($this->getInput('date_range'))); $url = self::URI . '/' . $this->getInput('language') . '?' . http_build_query($params); @@ -604,7 +603,7 @@ class GithubTrendingBridge extends BridgeAbstract { $html = getSimpleHTMLDOM($url) or returnServerError('Error while downloading the website content'); - $this->items = []; + $this->items = array(); foreach($html->find('.Box-row') as $element) { $item = array();