Skip to content

Commit f41d702

Browse files
committed
Fix CS
1 parent f866108 commit f41d702

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Parser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -954,7 +954,7 @@ private function isCurrentLineBlank(): bool
954954

955955
private function isCurrentLineComment(): bool
956956
{
957-
//checking explicitly the first char of the trim is faster than loops or strpos
957+
// checking explicitly the first char of the trim is faster than loops or strpos
958958
$ltrimmedLine = '' !== $this->currentLine && ' ' === $this->currentLine[0] ? ltrim($this->currentLine, ' ') : $this->currentLine;
959959

960960
return '' !== $ltrimmedLine && '#' === $ltrimmedLine[0];

0 commit comments

Comments
 (0)