Completed
Push — master ( 5efb45...4fc578 )
by Dmitry
03:34 queued 01:17
created
lib/Install/Installer.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public static function getBinaries(Event $event)
27 27
     {
28
-        $dir = self::getRootPath().'/bin';
28
+        $dir = self::getRootPath() . '/bin';
29 29
 
30 30
         if (!file_exists($dir)) {
31 31
             mkdir($dir);
@@ -36,10 +36,10 @@  discard block
 block discarded – undo
36 36
         foreach (self::$extByPlatforms as $ext) {
37 37
             foreach (self::$tools as $tool) {
38 38
                 file_put_contents(
39
-                    $dir.'/'.$tool.$ext,
40
-                    fopen('https://github.com/nosilver4u/ewww-image-optimizer/raw/master/binaries/'.$tool.$ext, 'r')
39
+                    $dir . '/' . $tool . $ext,
40
+                    fopen('https://github.com/nosilver4u/ewww-image-optimizer/raw/master/binaries/' . $tool . $ext, 'r')
41 41
                 );
42
-                $event->getIO()->write($tool.$ext);
42
+                $event->getIO()->write($tool . $ext);
43 43
             }
44 44
         }
45 45
 
Please login to merge, or discard this patch.