Completed
Push — master ( d339f3...382f5f )
by Tomas
05:14
created
src/Response/JsonApiResponse.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Tomaj\NetteApi\Response;
4 4
 
5
-use Nette\Application\Responses\JsonResponse;
6 5
 use Nette;
6
+use Nette\Application\Responses\JsonResponse;
7 7
 
8 8
 class JsonApiResponse extends JsonResponse
9 9
 {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      * @param string $contentType
28 28
      * @param string $charset
29 29
      */
30
-    public function __construct($code, $data, $contentType = 'application/json', $charset ='utf-8')
30
+    public function __construct($code, $data, $contentType = 'application/json', $charset = 'utf-8')
31 31
     {
32 32
         parent::__construct($data, $contentType);
33 33
         $this->charset = $charset;
Please login to merge, or discard this patch.