Passed
Push — master ( 39fafa...4a4955 )
by Neil
06:32
created
src/CelcatWebAPI.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
         if ($this->config['PROXY']) {
131 131
             $client = new Client(['proxy' => $this->config['PROXY']]);
132 132
             if (!empty($this->config['PROXY']['no'])) {
133
-                putenv('no_proxy=' .implode(' ,', $this->config['PROXY']['no']));
133
+                putenv('no_proxy='.implode(' ,', $this->config['PROXY']['no']));
134 134
             }
135 135
 
136 136
             return $client;
Please login to merge, or discard this patch.
src/Traits/GetResourcesTrait.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      */
39 39
     public function get($parameters = [])
40 40
     {
41
-	$this->parameters = array_merge($this->parameters, $parameters);
41
+    $this->parameters = array_merge($this->parameters, $parameters);
42 42
         if (empty($this->parameters['pageSize'])) {
43 43
             $this->parameters['pageSize'] = 50;
44 44
         }
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     public function getAll($parameters = [])
58 58
     {
59 59
 
60
-	$this->parameters = array_merge($this->parameters, $parameters);	
60
+    $this->parameters = array_merge($this->parameters, $parameters);	
61 61
         if (empty($this->parameters['pageSize'])) {
62 62
             $this->parameters['pageSize'] = 1000;
63 63
         }
Please login to merge, or discard this patch.