Passed
Push — master ( b8ca5b...473422 )
by Andrey
09:59 queued 06:52
created
src/NovaPoshta.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      */
32 32
     public function getApi()
33 33
     {
34
-        if (! $this->api) {
34
+        if (!$this->api) {
35 35
             $this->api = config('novaposhta.api_key');
36 36
         }
37 37
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
             $answer = $answer[0];
95 95
         }
96 96
 
97
-        if (! isset($answer['success']) || ! isset($answer['data']) || empty($answer['data'])) {
97
+        if (!isset($answer['success']) || !isset($answer['data']) || empty($answer['data'])) {
98 98
             // что-то не так в ответе
99 99
             $info = trans('novaposhta::novaposhta.error_answer');
100 100
             $success = false;
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
             }
121 121
         }
122 122
 
123
-        if (! $info && isset($answer['info'])) {
123
+        if (!$info && isset($answer['info'])) {
124 124
             $info = $answer['info'];
125 125
         }
126 126
 
Please login to merge, or discard this patch.