Completed
Push — master ( a9a080...9da10b )
by Fabian
03:04
created
src/TagGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -141,10 +141,10 @@
 block discarded – undo
141 141
         // Startup image must be 320x480 and in portrait mode
142 142
         $splashScreen = Linq::from($configuration->getSplashScreens())
143 143
             ->firstOrNull(
144
-                function (Image $img) {
144
+                function(Image $img) {
145 145
                     return Linq::from($img->getSizes())
146 146
                         ->any(
147
-                            function ($size) {
147
+                            function($size) {
148 148
                                 return $size == "320x480";
149 149
                             }
150 150
                         );
Please login to merge, or discard this patch.
src/Image.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
      */
128 128
     public function addSize($width, $height)
129 129
     {
130
-        $this->sizes[] = [ (int)$width, (int)$height ];
130
+        $this->sizes[] = [(int)$width, (int)$height];
131 131
         return $this;
132 132
     }
133 133
 
Please login to merge, or discard this patch.