summaryrefslogtreecommitdiffstats
path: root/lib/Explore/RecommendedSites.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Explore/RecommendedSites.php')
-rw-r--r--lib/Explore/RecommendedSites.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Explore/RecommendedSites.php b/lib/Explore/RecommendedSites.php
index b22c07e1d..504d63497 100644
--- a/lib/Explore/RecommendedSites.php
+++ b/lib/Explore/RecommendedSites.php
@@ -22,13 +22,13 @@ class RecommendedSites
* @param string $exploreDir the absolute path to where the recommendation
* config files lie without a trailing slash
*/
- public function __construct($exploreDir)
+ public function __construct($exploreDir)
{
$this->directory = $exploreDir;
}
- public function forLanguage($languageCode)
+ public function forLanguage($languageCode)
{
$file = $this->directory . '/feeds.' . $languageCode . '.json';
@@ -40,6 +40,4 @@ class RecommendedSites
throw new RecommendedSiteNotFoundException($msg);
}
}
-
-
}