Completed
Push — master ( 006947...8a92c2 )
by Raphaël
02:28
created
src/Response/CertainResponse.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
             
59 59
             if($contentType === 'json'){
60 60
                $response['results'] = $this->jsonp_decode($bodyString, $assoc); 
61
-            }else{
61
+            } else{
62 62
                $response['results']=$bodyString;
63 63
             }
64 64
             
Please login to merge, or discard this patch.
src/CertainApiClient.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
                     throw new Exceptions\RessourceMandatoryFieldException(sprintf('The field %s is required',$field));
109 109
                 }
110 110
             }
111
-        }else{
111
+        } else{
112 112
             throw new Exceptions\RessourceMandatoryFieldException(sprintf('The id field is required'));
113 113
         }
114 114
         $this->results = $this->certainApiService->put($ressourceName, $this->ressourceCalled, $ressourceId, $bodyData, $query, $assoc, $contentType);
Please login to merge, or discard this patch.
src/CertainRessourceAbstract.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
                     throw new Exceptions\RessourceMandatoryFieldException(sprintf('The field %s is required',$field));
109 109
                 }
110 110
             }
111
-        }else{
111
+        } else{
112 112
             throw new Exceptions\RessourceMandatoryFieldException(sprintf('The id field is required'));
113 113
         }
114 114
         $this->results = $this->certainApiService->put($ressourceName, $this->ressourceCalled, $ressourceId, $bodyData, $query, $assoc, $contentType);
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
             foreach ($ressourceCalledParameters as $segmentKey => $segmentValue) {
170 170
                 if($segmentValue != ''){
171 171
                     $this->ressourceCalled .= '/'.$segmentKey.'/'.$segmentValue;
172
-                }else{
172
+                } else{
173 173
                     $this->ressourceCalled .= '/'.$segmentKey;
174 174
                 }
175 175
 
Please login to merge, or discard this patch.