Completed
Push — master ( bc6b42...a8cabe )
by Toni
02:52 queued 38s
created
src/Context/MultilingualContext.php 1 patch
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -63,11 +63,11 @@
 block discarded – undo
63 63
         if(isset($this->translations[$target][$this->multilingual_parameters['language']])){
64 64
             $target = $this->translations[$target][$this->multilingual_parameters['language']];
65 65
             return $target;
66
-        }
67
-        elseif (isset($this->translations[$target])) {
66
+        } elseif (isset($this->translations[$target])) {
68 67
             return $target;
68
+        } else {
69
+            throw new Exception ("The text '$target'' is not defined in '$translations' translation file.");
69 70
         }
70
-        else throw new Exception ("The text '$target'' is not defined in '$translations' translation file.");
71 71
     }
72 72
 
73 73
     /**
Please login to merge, or discard this patch.