Skip to content

Commit

Permalink
Merge pull request #6 from Stillat/analysis-Ko3rnR
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
JohnathonKoster authored Nov 18, 2022
2 parents 4de2f33 + e1a210c commit f9b4eaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Parsers/Blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ public function parse($input)
$i = $componentResults[1];

continue;
} elseif ($this->current === self::TOKEN_BLADE_START && $this->isStartingBladeEscapeSequence() === false && ($this->previous == "\n" || $this->previous == null || ctype_space($this->previous) || ctype_punct($this->previous) || $this->previous == '?')) {
} elseif ($this->current === self::TOKEN_BLADE_START && $this->isStartingBladeEscapeSequence() === false && ($this->previous == "\n" || $this->previous == null || ctype_space($this->previous) || ctype_punct($this->previous) || $this->previous == '?')) {
$this->convertSegmentToStringLiteral();

$scanResults = $this->scanToEndOfDirective($i);
Expand Down

0 comments on commit f9b4eaa

Please sign in to comment.