Completed
Pull Request — master (#9)
by Vytautas
10:39 queued 07:17
created
src/Transformer/Fit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         $image->fit(
58 58
             $options['width'],
59 59
             $options['height'],
60
-            function ($constraint) {
60
+            function($constraint) {
61 61
                 $constraint->upsize();
62 62
             },
63 63
             $options['position']
Please login to merge, or discard this patch.
src/Router/ImageRoute.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         if ($options instanceof \Traversable) {
40 40
             $options = ArrayUtils::iteratorToArray($options);
41 41
         } elseif (!is_array($options)) {
42
-            throw new InvalidArgumentException(__METHOD__ . ' expects an array or Traversable set of options');
42
+            throw new InvalidArgumentException(__METHOD__.' expects an array or Traversable set of options');
43 43
         }
44 44
 
45 45
         $this->options = array_merge($this->options, $options);
Please login to merge, or discard this patch.
src/Module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,6 +15,6 @@
 block discarded – undo
15 15
      */
16 16
     public function getConfig()
17 17
     {
18
-        return include __DIR__ . '/../config/module.config.php';
18
+        return include __DIR__.'/../config/module.config.php';
19 19
     }
20 20
 }
Please login to merge, or discard this patch.