Browse Source

Fix up CS.

mscherer 7 years ago
parent
commit
db4a9d40a2
1 changed files with 2 additions and 0 deletions
  1. 2 0
      tests/TestCase/Http/Client/RequestTest.php

+ 2 - 0
tests/TestCase/Http/Client/RequestTest.php

@@ -42,6 +42,7 @@ class RequestTest extends TestCase
         $this->assertSame('application/json', $request->getHeaderLine('Content-Type'));
         $this->assertSame(json_encode($data), $request->getBody()->__toString());
     }
+
     /**
      * @param array $headers The HTTP headers to set.
      * @param array|string|null $data The request body to use.
@@ -58,6 +59,7 @@ class RequestTest extends TestCase
         $this->assertSame('application/json', $request->getHeaderLine('Content-Type'));
         $this->assertSame(json_encode($data), $request->getBody()->__toString());
     }
+
     /**
      * @dataProvider additionProvider
      */