Completed
Push — master ( 30e0ce...250dc7 )
by Asif
02:20
created
src/Compilers/ShortcodeCompiler.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,8 +65,9 @@
 block discarded – undo
65 65
     public function compile($value)
66 66
     {
67 67
         // Only continue is laravel-shortcodes have been registered
68
-        if (!$this->enabled || !$this->hasShortcodes())
69
-            return $value;
68
+        if (!$this->enabled || !$this->hasShortcodes()) {
69
+                    return $value;
70
+        }
70 71
         // Set empty result
71 72
         $result = '';
72 73
         // Here we will loop through all of the tokens returned by the Zend lexer and
Please login to merge, or discard this patch.