Skip to content

Commit 940fba3

Browse files
authored
Merge pull request #5 from spatie/analysis-XWr1Aj
Apply fixes from StyleCI
2 parents 7ae42cf + 6fe78b0 commit 940fba3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

config/image-optimizer.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,42 +7,42 @@
77
use Spatie\ImageOptimizer\Optimizers\Jpegoptim;
88

99
return [
10-
/**
10+
/*
1111
* When calling `optimize` the package will automatically determine which optimizers
1212
* should run for the given image.
1313
*/
1414
'optimizers' => [
1515

1616
Jpegoptim::class => [
1717
'--strip-all', // this strips out all text information such as comments and EXIF data
18-
'--all-progressive' // this will make sure the resulting image is a progressive one
18+
'--all-progressive', // this will make sure the resulting image is a progressive one
1919
],
2020

2121
Pngquant::class => [
22-
'--force' // required parameter for this package
22+
'--force', // required parameter for this package
2323
],
2424

2525
Optipng::class => [
2626
'-i0', // this will result in a non-interlaced, progressive scanned image
2727
'-o2', // this set the optimization level to two (multiple IDAT compression trials)
28-
'-quiet' // required parameter for this package
28+
'-quiet', // required parameter for this package
2929
],
3030
Svgo::class => [
31-
'--disable=cleanupIDs' // disabling because it is know to cause troubles
31+
'--disable=cleanupIDs', // disabling because it is know to cause troubles
3232
],
3333

3434
Gifsicle::class => [
3535
'-b', // required parameter for this package
36-
'-O3' // this produces the slowest but best results
36+
'-O3', // this produces the slowest but best results
3737
],
3838
],
3939

40-
/**
40+
/*
4141
* The maximum time in seconds each optimizer is allowed to run separately.
4242
*/
4343
'timeout' => 60,
4444

45-
/**
45+
/*
4646
* If set to `true` all output of the optimizer binaries will be appended to the default log.
4747
* You can also set this on an class that implements `Psr\Log\LoggerInterface`.
4848
*/

0 commit comments

Comments
 (0)