Completed
Push — master ( 9de734...e82624 )
by Jorge
05:24
created
src/Helper/ObjectConstructor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace CCT\Kong\Helper;
6 6
 
Please login to merge, or discard this patch.
src/Exception/MethodNotImplementedException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace CCT\Kong\Exception;
6 6
 
Please login to merge, or discard this patch.
src/Http/Definition/QueryParams.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace CCT\Kong\Http\Definition;
6 6
 
Please login to merge, or discard this patch.
src/Http/Request/PluginRequest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace CCT\Kong\Http\Request;
6 6
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
             throw new InvalidParameterException('The API ID is required to create a new Plugin.');
97 97
         }
98 98
 
99
-        $this->config->set('serialization_context', SerializationContext::create()->setGroups([ 'update', 'create' ]));
99
+        $this->config->set('serialization_context', SerializationContext::create()->setGroups(['update', 'create']));
100 100
         $this->changeFormNormalizer();
101 101
 
102 102
         $apiId = $plugin->getApiId() ?: $apiId;
Please login to merge, or discard this patch.
src/Http/Request/CertificateRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace CCT\Kong\Http\Request;
6 6
 
Please login to merge, or discard this patch.
src/Http/Request/ApiRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
 
39 39
     public function updateOrCreate(Api $api)
40 40
     {
41
-        $this->config->set('serialization_context', SerializationContext::create()->setGroups([ 'update', 'create' ]));
41
+        $this->config->set('serialization_context', SerializationContext::create()->setGroups(['update', 'create']));
42 42
 
43 43
         return parent::requestPut($this->appendToUri($api->getId()), $api, null);
44 44
     }
Please login to merge, or discard this patch.
src/Http/Request.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace CCT\Kong\Http;
6 6
 
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
     {
274 274
         if (false !== strpos($uri, '?')) {
275 275
             throw new InvalidParameterException(sprintf(
276
-                'It was not possible to normalize the URI as the current URI %s already has the interrogation char in its string.'.
276
+                'It was not possible to normalize the URI as the current URI %s already has the interrogation char in its string.' .
277 277
                 $uri
278 278
             ));
279 279
         }
Please login to merge, or discard this patch.
src/Http/ResponseInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace CCT\Kong\Http;
6 6
 
Please login to merge, or discard this patch.
src/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace CCT\Kong;
6 6
 
Please login to merge, or discard this patch.