@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | /** |
54 | 54 | * Если значения пустые - вставляем насильно. |
55 | 55 | */ |
56 | - if (! $this->limit) { |
|
56 | + if (!$this->limit) { |
|
57 | 57 | $this->methodProperties['Limit'] = config('novaposhta.page_limit'); |
58 | 58 | } |
59 | 59 | |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | /** |
91 | 91 | * Если значения пустые - вставляем насильно. |
92 | 92 | */ |
93 | - if (! $this->limit) { |
|
93 | + if (!$this->limit) { |
|
94 | 94 | $this->methodProperties['Limit'] = config('novaposhta.page_limit'); |
95 | 95 | } |
96 | 96 |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | */ |
42 | 42 | public function getApi(): string |
43 | 43 | { |
44 | - if (! $this->api) { |
|
44 | + if (!$this->api) { |
|
45 | 45 | $this->api = config('novaposhta.api_key'); |
46 | 46 | } |
47 | 47 | |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | Log::debug($model.' / '.$calledMethod.' // apiKey: '.(int) $auth); |
195 | 195 | Log::debug('--------------------'); |
196 | 196 | |
197 | - if (! empty($methodProperties)) { |
|
197 | + if (!empty($methodProperties)) { |
|
198 | 198 | try { |
199 | 199 | Log::notice(json_encode($methodProperties)); |
200 | 200 | } catch (Exception $e) { |