Passed
Pull Request — develop (#110)
by
unknown
15:14
created
src/Responses/Events/RetrieveResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
 
89 89
         if (!empty($included)) {
90 90
             foreach ($included as $includedData) {
91
-                if($includedData['type'] === 'location' && $includedData['id'] = $location->id) {
91
+                if ($includedData['type'] === 'location' && $includedData['id'] = $location->id) {
92 92
                     $location = LocationsRetrieveResponse::from($includedData);
93 93
                 }
94 94
             }
Please login to merge, or discard this patch.
src/Factory.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
 
101 101
         $client = $this->httpClient ??= Psr18ClientDiscovery::find();
102 102
 
103
-       // $sendAsync = $this->makeStreamHandler($client);
103
+        // $sendAsync = $this->makeStreamHandler($client);
104 104
 
105 105
         $transporter = new HttpTransporter($client, $baseUri, $headers, $queryParams);
106 106
 
Please login to merge, or discard this patch.
src/ValueObjects/Transporter/Payload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
 
133 133
         $uri = $baseUri->toString() . $this->uri->toString();
134 134
 
135
-        if (! empty($this->parameters)) {
135
+        if (!empty($this->parameters)) {
136 136
             $uri .= '?' . http_build_query($this->parameters);
137 137
         }
138 138
 
Please login to merge, or discard this patch.