Completed
Push — develop ( d6a5df...b082c1 )
by René
02:36
created
Classes/Loader/ApiResultLoader.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
         if ($entry === false) {
47 47
             try {
48 48
                 $entry = $this->dataService->getApiResult($key);
49
-            }catch (ApiErrorException $e) {
49
+            } catch (ApiErrorException $e) {
50 50
 
51 51
             }
52 52
             $this->persister->persist($entry, $key);
Please login to merge, or discard this patch.
Classes/Service/DataService.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
         foreach ($keys as $key) {
80 80
             try {
81 81
                 $results[$key] = $this->getApiResult($key);
82
-            }catch (ApiErrorException $e) {
82
+            } catch (ApiErrorException $e) {
83 83
                 continue;
84 84
             }
85 85
 
Please login to merge, or discard this patch.
Classes/Service/ApiCallService.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
             $this->checkForCurl();
28 28
 
29 29
             return $this->send($json);
30
-        }catch (UnavailableException $e) {
30
+        } catch (UnavailableException $e) {
31 31
 
32 32
         }
33 33
     }
Please login to merge, or discard this patch.