Passed
Push — master ( 368e86...44072b )
by Matt
03:04 queued 40s
created
src/services/LeverService.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -181,14 +181,14 @@
 block discarded – undo
181 181
 
182 182
     public function getJobById($jobId)
183 183
     {
184
-        try 
184
+        try
185 185
         {
186 186
             $response     = $this->client->get(sprintf('postings/%s/%s', $this->settings->site, $jobId));
187 187
             $responseData = json_decode($response->getBody());
188 188
 
189 189
             return new LeverJob($responseData);
190 190
         }
191
-        catch(\GuzzleHttp\Exception\RequestException $e) 
191
+        catch(\GuzzleHttp\Exception\RequestException $e)
192 192
         {
193 193
             if ($e->getCode() === 404)
194 194
             {
Please login to merge, or discard this patch.