Fix indentation and remove empty lines

This commit is contained in:
logmanoriginal 2016-08-03 21:14:46 +02:00
parent 1d58809676
commit 924e123ba6

View file

@ -2,13 +2,11 @@
class MsnMondeBridge extends BridgeAbstract{
public function loadMetadatas() {
$this->maintainer = "kranack";
$this->name = "MSN Actu Monde";
$this->uri = "http://www.msn.com/fr-fr/actualite/monde";
$this->description = "Returns the 10 newest posts from MSN Actualités (full text)";
$this->update = "2015-01-30";
$this->update = "2016-08-03";
}
function MsnMondeExtractContent($url, &$item) {
@ -18,7 +16,7 @@ class MsnMondeBridge extends BridgeAbstract{
}
public function collectData(array $param){
$html = $this->file_get_html('http://www.msn.com/fr-fr/actualite/monde') or $this->returnError('Could not request MsnMonde.', 404);
$html = $this->file_get_html($this->getURI()) or $this->returnError('Could not request MsnMonde.', 404);
$limit = 0;
foreach($html->find('.smalla') as $article) {
if($limit < 10) {