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 f866108 commit f41d702Copy full SHA for f41d702
Parser.php
@@ -954,7 +954,7 @@ private function isCurrentLineBlank(): bool
954
955
private function isCurrentLineComment(): bool
956
{
957
- //checking explicitly the first char of the trim is faster than loops or strpos
+ // checking explicitly the first char of the trim is faster than loops or strpos
958
$ltrimmedLine = '' !== $this->currentLine && ' ' === $this->currentLine[0] ? ltrim($this->currentLine, ' ') : $this->currentLine;
959
960
return '' !== $ltrimmedLine && '#' === $ltrimmedLine[0];
0 commit comments