Passed
Push — master ( c58a64...a0a4e5 )
by Andrey
03:30 queued 25s
created
src/Models/Address.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/NovaPoshta.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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) {
Please login to merge, or discard this patch.