From afc57cae6d1b357911d13f4a4a724e70c8c023d0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jaime=20Pe=CC=81rez?= <jaime.perez@uninett.no>
Date: Thu, 27 Oct 2016 16:45:09 +0200
Subject: [PATCH] Minor code style fixes.

---
 lib/SimpleSAML/Locale/Language.php  | 1 -
 lib/SimpleSAML/Locale/Translate.php | 5 +++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/SimpleSAML/Locale/Language.php b/lib/SimpleSAML/Locale/Language.php
index 8cc205651..dab816c94 100644
--- a/lib/SimpleSAML/Locale/Language.php
+++ b/lib/SimpleSAML/Locale/Language.php
@@ -266,7 +266,6 @@ class Language
         $bestScore = -1.0;
 
         foreach ($languageScore as $language => $score) {
-
             // apply the language map to the language code
             if (array_key_exists($language, $languageMap)) {
                 $language = $languageMap[$language];
diff --git a/lib/SimpleSAML/Locale/Translate.php b/lib/SimpleSAML/Locale/Translate.php
index c75c53143..3e6e46770 100644
--- a/lib/SimpleSAML/Locale/Translate.php
+++ b/lib/SimpleSAML/Locale/Translate.php
@@ -228,7 +228,7 @@ class Translate
      *
      * @return string The tag, unchanged.
      */
-    static public function noop($tag)
+    public static function noop($tag)
     {
         return $tag;
     }
@@ -251,7 +251,8 @@ class Translate
      * (language => text) mappings. The array version will go away in 2.0
      * @param array        $replacements An associative array of keys that should be replaced with values in the
      *     translated string.
-     * @param boolean      $fallbackdefault Default translation to use as a fallback if no valid translation was found. @deprecated Not used in twig, gettext
+     * @param boolean      $fallbackdefault Default translation to use as a fallback if no valid translation was found.
+     * @deprecated Not used in twig, gettext
      *
      * @return string  The translated tag, or a placeholder value if the tag wasn't found.
      */
-- 
GitLab