Completed
Push — master ( b6df4e...3ad32d )
by Raphaël
02:17
created
src/CertainRessourceAbstract.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      * @throws Exceptions\RessourceMandatoryFieldException
76 76
      */
77 77
     public function post($bodyData, $query = array(), $ressourceId = null,
78
-                         $assoc = false, $contentType = 'json')
78
+                            $assoc = false, $contentType = 'json')
79 79
     {
80 80
         $ressourceName = $this->getRessourceName();
81 81
         ;
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
      * @return \Wabel\CertainAPI\CertainRessourceAbstract
225 225
      */
226 226
     public function getWithEventCode($eventCode, $ressourceId, $params = array(),
227
-                                     $assoc = false, $contentType = 'json')
227
+                                        $assoc = false, $contentType = 'json')
228 228
     {
229 229
         $ressourceId = $eventCode.'/'.$ressourceId;
230 230
         return $this->get($ressourceId, $params, $assoc, $contentType);
@@ -241,8 +241,8 @@  discard block
 block discarded – undo
241 241
      * @return \Wabel\CertainAPI\CertainRessourceAbstract
242 242
      */
243 243
     public function postWithEventCode($eventCode, $ressourceId, $bodyData,
244
-                                      $query = array(), $assoc = false,
245
-                                      $contentType = 'json')
244
+                                        $query = array(), $assoc = false,
245
+                                        $contentType = 'json')
246 246
     {
247 247
         $ressourceId = $eventCode.'/'.$ressourceId;
248 248
         return $this->post($bodyData, $query, $ressourceId, $assoc, $contentType);
@@ -259,8 +259,8 @@  discard block
 block discarded – undo
259 259
      * @return \Wabel\CertainAPI\CertainRessourceAbstract
260 260
      */
261 261
     public function putWithEventCode($eventCode, $ressourceId, $bodyData,
262
-                                     $query = array(), $assoc = false,
263
-                                     $contentType = 'json')
262
+                                        $query = array(), $assoc = false,
263
+                                        $contentType = 'json')
264 264
     {
265 265
         $ressourceId = $eventCode.'/'.$ressourceId;
266 266
         return $this->put($bodyData, $query, $ressourceId, $assoc, $contentType);
Please login to merge, or discard this patch.