Passed
Push — master ( 41ce99...eb7dfc )
by Robin
05:20
created
src/Support/GuzzleClientFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
     public function createClient()
73 73
     {
74 74
         $stack = HandlerStack::create();
75
-        $stack->push(Middleware::mapResponse(function (ResponseInterface $response) {
75
+        $stack->push(Middleware::mapResponse(function(ResponseInterface $response) {
76 76
             return new Response($response);
77 77
         }));
78 78
 
Please login to merge, or discard this patch.
src/Support/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
      */
168 168
     public function existenceCheck()
169 169
     {
170
-        if (! in_array($this->getStatusCode(), [200, 404])) {
170
+        if ( ! in_array($this->getStatusCode(), [200, 404])) {
171 171
             throw new UnexpectedStatusException($this);
172 172
         }
173 173
 
Please login to merge, or discard this patch.
src/ResourceClients/Models/Model.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     public function fill($data)
49 49
     {
50 50
         foreach ($data as $key => $value) {
51
-            if (! property_exists($this, $key)) {
51
+            if ( ! property_exists($this, $key)) {
52 52
                 throw new InvalidPropertyException($key . ' is not a property on ' . get_class($this));
53 53
             }
54 54
 
Please login to merge, or discard this patch.