Passed
Pull Request — develop (#142)
by
unknown
01:56
created
src/Responses/Events/RetrieveResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 
54 54
         // location
55 55
         $locationId = $attributes['relationships']['location']['data']['id'];
56
-        $location = array_reduce($included, function ($data, $includedData) use ($locationId) {
56
+        $location = array_reduce($included, function($data, $includedData) use ($locationId) {
57 57
             if ($includedData['id'] === $locationId) {
58 58
                 return  LocationsRetrieveResponse::from($includedData);
59 59
             }
Please login to merge, or discard this patch.
src/Bookwhen.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -112,8 +112,7 @@
 block discarded – undo
112 112
         try {
113 113
             $this->client = BookwhenApi::client(!is_null($apiKey) ? $apiKey : $_ENV['INSHORE_BOOKWHEN_API_KEY']);
114 114
         } catch (\Exception $e) {
115
-        }
116
-        catch (\TypeError $e) {
115
+        } catch (\TypeError $e) {
117 116
             throw new ConfigurationException(); // @todo message
118 117
         }
119 118
     }
Please login to merge, or discard this patch.