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 70bfb50 commit ee9f4c3Copy full SHA for ee9f4c3
src/Symfony/Component/HttpKernel/Kernel.php
@@ -852,7 +852,7 @@ public static function stripComments($source)
852
do {
853
$token = $tokens[++$i];
854
$output .= isset($token[1]) && 'b"' !== $token ? $token[1] : $token;
855
- } while ($token[0] !== T_END_HEREDOC);
+ } while (T_END_HEREDOC !== $token[0]);
856
$rawChunk = '';
857
} elseif (T_WHITESPACE === $token[0]) {
858
if ($ignoreSpace) {
0 commit comments