We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0af2e3d commit 75c7a68Copy full SHA for 75c7a68
src/Parser.php
@@ -342,7 +342,7 @@ protected function isBlockEnd($line, $blockName = null)
342
$line = trim($line);
343
$pattern = '/^\<\/';
344
$pattern .= ($blockName) ? $blockName : '[^\s\>]+';
345
- $pattern .= '\>$/';
+ $pattern .= '\>$/i';
346
return (preg_match($pattern, $line) > 0);
347
}
348
@@ -506,4 +506,4 @@ private function blockRegex($line)
506
507
return $final;
508
509
-}
+}
0 commit comments