Skip to content

Commit 6febc36

Browse files
authored
Fix PhpStan error.
1 parent d3f460f commit 6febc36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Minifier/JShrinkMinifier.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ protected function lock(string $js): string
544544
return $js;
545545
}
546546

547-
$this->locks[$lock] = (string) $matches[2];
547+
$this->locks[$lock] = $matches[2];
548548

549549
return (string) preg_replace('/([+-])\s+([+-])/S', '$1' . $lock . '$2', $js);
550550
}

0 commit comments

Comments
 (0)