Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Sep 16, 2022
1 parent c731c8b commit a1e647b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Overrides/Frontend/Assets.php
Original file line number Diff line number Diff line change
Expand Up @@ -174,15 +174,15 @@ protected function makeJsCompiler(string $filename)
{
return resolve(JsCompiler::class, [
'assetsDir' => $this->assetsDir,
'filename' => $filename
'filename' => $filename,
]);
}

protected function makeLessCompiler(string $filename): LessCompiler
{
$compiler = resolve(LessCompiler::class, [
'assetsDir' => $this->assetsDir,
'filename' => $filename
'filename' => $filename,
]);

if ($this->cacheDir) {
Expand Down

0 comments on commit a1e647b

Please sign in to comment.