Passed
Push — master ( b739e4...796371 )
by Andrey
07:13 queued 04:04
created
src/NovaPoshta.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     public function getApi(): string
35 35
     {
36
-        if (! $this->api) {
36
+        if (!$this->api) {
37 37
             $this->api = config('novaposhta.api_key');
38 38
         }
39 39
 
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
             $answer = $answer[0];
96 96
         }
97 97
 
98
-        if (! isset($answer['success']) || ! isset($answer['data']) || empty($answer['data'])) {
98
+        if (!isset($answer['success']) || !isset($answer['data']) || empty($answer['data'])) {
99 99
             /**
100 100
              * Что-то не так в ответе.
101 101
              */
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
             }
126 126
         }
127 127
 
128
-        if (! $info && isset($answer['info']) && $answer['info']) {
128
+        if (!$info && isset($answer['info']) && $answer['info']) {
129 129
             $info['info'] = $answer['info'];
130 130
         }
131 131
 
Please login to merge, or discard this patch.