Completed
Branch master (254118)
by Alexander
01:40
created
src/Response.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -10,10 +10,10 @@  discard block
 block discarded – undo
10 10
 abstract class Response
11 11
 {
12 12
     public static $code_to_message = [
13
-         // Informational 1xx
13
+            // Informational 1xx
14 14
         100 => 'Continue',
15 15
         101 => 'Switching Protocols',
16
-         // Successful 2xx
16
+            // Successful 2xx
17 17
         200 => 'OK',
18 18
         201 => 'Created',
19 19
         202 => 'Accepted',
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
         204 => 'No Content',
22 22
         205 => 'Reset Content',
23 23
         206 => 'Partial Content',
24
-         // Redirection 3xx
24
+            // Redirection 3xx
25 25
         300 => 'Multiple Choices',
26 26
         301 => 'Moved Permanently',
27 27
         302 => 'Found',
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
         304 => 'Not Modified',
30 30
         305 => 'Use Proxy',
31 31
         307 => 'Temporary Redirect',
32
-         // Client Error 4xx
32
+            // Client Error 4xx
33 33
         400 => 'Bad Request',
34 34
         401 => 'Unauthorized',
35 35
         402 => 'Payment Required',
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         415 => 'Unsupported Media Type',
49 49
         416 => 'Requested Range Not Satisfiable',
50 50
         417 => 'Expectation Failed',
51
-         // Server Error 5xx
51
+            // Server Error 5xx
52 52
         500 => 'Internal Server Error',
53 53
         501 => 'Not Implemented',
54 54
         502 => 'Bad Gateway',
Please login to merge, or discard this patch.