Completed
Push — master ( db44e7...3e1fbd )
by Tom
04:39
created
build/bin/files.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@  discard block
 block discarded – undo
17 17
 ]
18 18
 JSON_URLS;
19 19
 
20
-$urlHeaders = function($url) {
21
-    return function($name = null) use ($url) {
20
+$urlHeaders = function ($url) {
21
+    return function ($name = null) use ($url) {
22 22
         static $response;
23 23
         $response || $response = shell_exec(sprintf('curl -sI %s', escapeshellarg($url)));
24 24
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     };
36 36
 };
37 37
 
38
-$box = function($title) {
38
+$box = function ($title) {
39 39
     $len    = strlen($title);
40 40
     $buffer = str_repeat("=", $len + 4);
41 41
     $buffer .= "\n= $title =\n";
@@ -43,13 +43,13 @@  discard block
 block discarded – undo
43 43
     return $buffer . "\n";
44 44
 };
45 45
 
46
-$bytes = function($count) {
46
+$bytes = function ($count) {
47 47
     return sprintf('%s (bytes)', number_format($count, 0, '.', ' '));
48 48
 };
49 49
 
50 50
 $urls = json_decode($urls, false, 16, null);
51 51
 
52
-$main = function($urls) use ($urlHeaders, $box, $bytes)
52
+$main = function ($urls) use ($urlHeaders, $box, $bytes)
53 53
 {
54 54
     foreach ($urls as $url) {
55 55
         $title = sprintf("%s: %s", $url->channel, $url->url);
Please login to merge, or discard this patch.
src/N98/Util/OperatingSystem.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * this file is part of magerun
4
- *
5
- * @author Tom Klingenberg <https://github.com/ktomk>
6
- */
3
+     * this file is part of magerun
4
+     *
5
+     * @author Tom Klingenberg <https://github.com/ktomk>
6
+     */
7 7
 namespace N98\Util;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.