Completed
Push — master ( c25f78...a754a4 )
by Emmanuel
04:55
created
src/Support/helpers.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
 if (! function_exists('array_get'))
27 27
 {
28
-  /*
28
+    /*
29 29
    *
30 30
    * @param array  $data
31 31
    * @param string $key
@@ -33,12 +33,12 @@  discard block
 block discarded – undo
33 33
    *
34 34
    * @return mixed
35 35
    */
36
-   function array_get($data, $key, $default = false) {
37
-     if (!is_array($data)) {
38
-         return $default;
39
-     }
40
-     return isset($data[$key]) ? $data[$key]: $default;
41
-   }
36
+    function array_get($data, $key, $default = false) {
37
+        if (!is_array($data)) {
38
+            return $default;
39
+        }
40
+        return isset($data[$key]) ? $data[$key]: $default;
41
+    }
42 42
 }
43 43
 
44 44
 if(!function_exists('array_keys_exist')){
@@ -67,6 +67,6 @@  discard block
 block discarded – undo
67 67
 }
68 68
 
69 69
 function cleanResponse($response){
70
-  $result = $response->getBody();
71
-  return $result;
70
+    $result = $response->getBody();
71
+    return $result;
72 72
 }
73 73
\ No newline at end of file
Please login to merge, or discard this patch.