Completed
Push — master ( 3702d4...d8c731 )
by
unknown
03:05
created
classes/Deferred.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -12,14 +12,14 @@
 block discarded – undo
12 12
 
13 13
 class Deferred {
14 14
 
15
-	protected $callback;
15
+  protected $callback;
16 16
 
17
-	public function __construct( callable $callback ) {
18
-		$this->callback = $callback;
19
-	}
17
+  public function __construct( callable $callback ) {
18
+    $this->callback = $callback;
19
+  }
20 20
 
21
-	public function __destruct() {
22
-		call_user_func( $this->callback );
23
-	}
21
+  public function __destruct() {
22
+    call_user_func( $this->callback );
23
+  }
24 24
 
25 25
 }
26 26
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,12 +14,12 @@
 block discarded – undo
14 14
 
15 15
 	protected $callback;
16 16
 
17
-	public function __construct( callable $callback ) {
17
+	public function __construct(callable $callback) {
18 18
 		$this->callback = $callback;
19 19
 	}
20 20
 
21 21
 	public function __destruct() {
22
-		call_user_func( $this->callback );
22
+		call_user_func($this->callback);
23 23
 	}
24 24
 
25 25
 }
26 26
\ No newline at end of file
Please login to merge, or discard this patch.
classes/Response.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -23,13 +23,13 @@  discard block
 block discarded – undo
23 23
           TYPE_BIN                = 'application/octet-stream';
24 24
 
25 25
     protected static $payload     = [],
26
-                     $status      = 200,
27
-                     $charset     = "utf-8",
28
-                     $headers     = ['Content-Type' => ['text/html; charset=utf-8']],
29
-                     $buffer      = null,
30
-                     $force_dl    = false,
31
-                     $link        = null,
32
-                     $sent        = false;
26
+                      $status      = 200,
27
+                      $charset     = "utf-8",
28
+                      $headers     = ['Content-Type' => ['text/html; charset=utf-8']],
29
+                      $buffer      = null,
30
+                      $force_dl    = false,
31
+                      $link        = null,
32
+                      $sent        = false;
33 33
 
34 34
 
35 35
     public static function charset($charset){
@@ -189,8 +189,8 @@  discard block
 block discarded – undo
189 189
     }
190 190
 
191 191
     public static function headers($setHeaders=null){
192
-       if ($setHeaders) static::$headers = $setHeaders;
193
-       return static::$headers;
192
+        if ($setHeaders) static::$headers = $setHeaders;
193
+        return static::$headers;
194 194
     }
195 195
 
196 196
     /**
Please login to merge, or discard this patch.