Passed
Pull Request — master (#736)
by Abdul Malik
07:17 queued 45s
created
src/Stempler/tests/Directive/BaseTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,9 +36,9 @@
 block discarded – undo
36 36
     protected const DIRECTIVES = [];
37 37
 
38 38
     /**
39
- * @param Template $document
40
- * @return string
41
- */
39
+     * @param Template $document
40
+     * @return string
41
+     */
42 42
     protected function compile(Template $document): string
43 43
     {
44 44
         $compiler = new Compiler();
Please login to merge, or discard this patch.
src/Http/src/Request/HeadersBag.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@
 block discarded – undo
30 30
      *
31 31
      *
32 32
      * @param bool|string $implode Implode header lines, false to return header as array.
33
-
34 33
      * @return string|array
35 34
      */
36 35
     public function get(string $name, $default = null, $implode = ',')
Please login to merge, or discard this patch.
src/Http/tests/SapiEmitter/SapiEmitterTest.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -132,12 +132,12 @@
 block discarded – undo
132 132
     {
133 133
         $body = 'Example body';
134 134
         $response = $this->createResponse(200, [], $body)
135
-                         ->withHeader('X-Test', '1')
136
-                         ->withAddedHeader('X-Test', '2')
137
-                         ->withAddedHeader('X-Test', '3; 3.5')
138
-                         ->withHeader('Cookie-Set', '1')
139
-                         ->withAddedHeader('cookie-Set', '2')
140
-                         ->withAddedHeader('Cookie-set', '3');
135
+                            ->withHeader('X-Test', '1')
136
+                            ->withAddedHeader('X-Test', '2')
137
+                            ->withAddedHeader('X-Test', '3; 3.5')
138
+                            ->withHeader('Cookie-Set', '1')
139
+                            ->withAddedHeader('cookie-Set', '2')
140
+                            ->withAddedHeader('Cookie-set', '3');
141 141
 
142 142
         (new SapiEmitter())->emit($response);
143 143
         $this->assertEquals(200, $this->getResponseCode());
Please login to merge, or discard this patch.