@@ -141,10 +141,10 @@ |
||
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 | ); |
@@ -127,7 +127,7 @@ |
||
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 |