Passed
Push — master ( 7488d9...c79d57 )
by Bjørn
02:54
created
src/Convert/Converters/Cwebp.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -482,7 +482,7 @@
 block discarded – undo
482 482
         if ($this->options[$optionName]) {
483 483
             $this->logLn(
484 484
                 'Discovering binaries ' . $description . ' ' .
485
-                 '(to skip this step, disable the "' . $optionName . '" option)'
485
+                    '(to skip this step, disable the "' . $optionName . '" option)'
486 486
             );
487 487
         } else {
488 488
             $this->logLn(
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
                 // otherwise encoding=auto would not work as expected
275 275
 
276 276
                 if ($options['encoding'] == 'lossless') {
277
-                    $cmdOptions[] ='-near_lossless ' . $options['near-lossless'];
277
+                    $cmdOptions[] = '-near_lossless ' . $options['near-lossless'];
278 278
                 } else {
279 279
                     $this->logLn(
280 280
                         'The near-lossless option ignored for lossy'
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
         } else {
425 425
             $this->log('. Result: ');
426 426
             if ($returnCode == 127) {
427
-                $this->logLn('*Exec failed* (the cwebp binary was not found at path: ' . $binary. ')');
427
+                $this->logLn('*Exec failed* (the cwebp binary was not found at path: ' . $binary . ')');
428 428
             } else {
429 429
                 if ($returnCode == 126) {
430 430
                     $this->logLn(
@@ -679,7 +679,7 @@  discard block
 block discarded – undo
679 679
             'Binaries ordered by version number.'
680 680
         );
681 681
         foreach ($binaryVersions as $binary => $version) {
682
-            $this->logLn('- ' . $binary . ': (version: ' . $version .')');
682
+            $this->logLn('- ' . $binary . ': (version: ' . $version . ')');
683 683
         }
684 684
 
685 685
         // Execute!
Please login to merge, or discard this patch.