Test Setup Failed
Push — master ( 2ce42f...60a972 )
by Dāvis
02:09 queued 12s
created
Guzzle/GuzzleHttp/Middleware/CacheMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     {
40 40
         return $handler($request, $options)->then(function(ResponseInterface $response) use ($request) {
41 41
             $code = (int)floor((int)$response->getStatusCode() / 100);
42
-            if($code === 2) {
42
+            if ($code === 2) {
43 43
                 $this->adapter->save($request, $response);
44 44
             }
45 45
 
Please login to merge, or discard this patch.
Script/Utils/Helper.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
         // @formatter:on
109 109
 
110 110
         $sum = 0;
111
-        foreach($calculations as $key => $calculation){
111
+        foreach ($calculations as $key => $calculation) {
112 112
             $sum += ($personCode[$key] * $calculation);
113 113
         }
114 114
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
         // @formatter:on
109 109
 
110 110
         $sum = 0;
111
-        foreach($calculations as $key => $calculation){
111
+        foreach($calculations as $key => $calculation) {
112 112
             $sum += ($personCode[$key] * $calculation);
113 113
         }
114 114
 
Please login to merge, or discard this patch.
Script/Repository/QuickInsertRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
         $data = [];
139 139
 
140 140
         $flip = array_flip($columns);
141
-        if(!empty($result)) {
141
+        if (!empty($result)) {
142 142
             foreach ($result as $key => $value) {
143 143
                 $content = self::value($object, $key, $type, false);
144 144
                 if ($content !== $value) {
Please login to merge, or discard this patch.