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