Skip to content

Commit db48c01

Browse files
committed
Fix CS issues
1 parent 4dc58f9 commit db48c01

22 files changed

+47
-47
lines changed

src/AssetProcess.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public function run(?string $input = null): string
105105
$descriptorSpec,
106106
$pipes,
107107
null,
108-
$this->_env
108+
$this->_env,
109109
);
110110
if (is_resource($process)) {
111111
fwrite($pipes[0], $input);

src/Cli/BuildTask.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ protected function addArguments(): void
6464
'description' => 'The config file to use.',
6565
'required' => true,
6666
],
67-
]
67+
],
6868
);
6969
}
7070

src/Cli/ClearTask.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ protected function addArguments(): void
4949
'description' => 'The config file to use.',
5050
'required' => true,
5151
],
52-
]
52+
],
5353
);
5454
}
5555

src/Factory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function cachedCompiler(string $outputDir = '', bool $debug = false): Cac
7777
{
7878
return new CachedCompiler(
7979
$this->cacher($outputDir),
80-
$this->compiler($debug)
80+
$this->compiler($debug),
8181
);
8282
}
8383

src/Filter/ClosureCompiler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ protected function _query(string $content, array $args = []): string|bool
136136
CURLOPT_RETURNTRANSFER => 1,
137137
CURLOPT_HEADER => 0,
138138
CURLOPT_FOLLOWLOCATION => 0,
139-
]
139+
],
140140
);
141141

142142
$output = curl_exec($ch);

src/Filter/CssDependencyTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ protected function _prependPrefixToFilename(string $name): string
147147
return str_replace(
148148
$ds . $filename,
149149
$ds . $this->optionalDependencyPrefix . $filename,
150-
$name
150+
$name,
151151
);
152152
}
153153
}

src/Filter/FilterRegistry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public function collection(AssetTarget $target): FilterCollection
114114
[
115115
'target' => $target->name(),
116116
'paths' => $target->paths(),
117-
]
117+
],
118118
);
119119
$filters[] = $copy;
120120
}

src/Filter/Hogan.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ protected function _generateScript(string $file, string $filename, string $input
106106
json_encode($input),
107107
json_encode($config),
108108
$id,
109-
$filepath
109+
$filepath,
110110
);
111111
file_put_contents($file, $contents);
112112
}

src/Filter/ImportInline.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function input(string $filename, string $content): string
5353
return preg_replace_callback(
5454
$this->_pattern,
5555
[$this, '_replace'],
56-
$content
56+
$content,
5757
);
5858
}
5959

src/Filter/JSqueezeFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function output(string $target, string $content): string
5858
$content,
5959
$this->_settings['singleLine'],
6060
$this->_settings['keepImportantComments'],
61-
$this->_settings['specialVarRx']
61+
$this->_settings['specialVarRx'],
6262
);
6363
}
6464
}

0 commit comments

Comments
 (0)