Skip to content

Commit 1f15ef5

Browse files
tabacituStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent ba51572 commit 1f15ef5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Console/Commands/BassetCache.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ private function parseBassetArguments(string $argumentString): array
179179
$char = $argumentString[$i];
180180
$isEscaped = $i > 0 && $argumentString[$i - 1] === '\\';
181181

182-
if (in_array($char, ['"', "'"], true) && !$isEscaped) {
183-
if (!$state['inQuotes']) {
182+
if (in_array($char, ['"', "'"], true) && ! $isEscaped) {
183+
if (! $state['inQuotes']) {
184184
$state['inQuotes'] = true;
185185
$state['quoteChar'] = $char;
186186
} elseif ($char === $state['quoteChar']) {

0 commit comments

Comments
 (0)