Skip to content

Commit ee9f4c3

Browse files
committed
fixed CS
1 parent 70bfb50 commit ee9f4c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ public static function stripComments($source)
852852
do {
853853
$token = $tokens[++$i];
854854
$output .= isset($token[1]) && 'b"' !== $token ? $token[1] : $token;
855-
} while ($token[0] !== T_END_HEREDOC);
855+
} while (T_END_HEREDOC !== $token[0]);
856856
$rawChunk = '';
857857
} elseif (T_WHITESPACE === $token[0]) {
858858
if ($ignoreSpace) {

0 commit comments

Comments
 (0)