Passed
Push — master ( 141ecf...b58c16 )
by Glegrith
03:19
created
bootstrap/helper.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,9 @@
 block discarded – undo
78 78
         function getStringBetween($string, $start, $end) {
79 79
             $string = ' ' . $string;
80 80
             $ini = strpos($string, $start);
81
-            if ($ini == 0) return '';
81
+            if ($ini == 0) {
82
+                return '';
83
+            }
82 84
             $ini += strlen($start);
83 85
             $len = strpos($string, $end, $ini) - $ini;
84 86
             return substr($string, $ini, $len);
Please login to merge, or discard this patch.