Passed
Push — master ( ea6a8d...3a1e08 )
by Jhao
01:58
created
src/Dispatching/Endpoints/Orders/Requests/OrderRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
     private function convertAddress(Address $address): \Generator
167 167
     {
168 168
         foreach ($address->toArray() as $key => $value) {
169
-            if ($key === 'index' && ! \preg_match(self::RUSSIAN_POSTAL_CODE, $value)) {
169
+            if ($key === 'index' && !\preg_match(self::RUSSIAN_POSTAL_CODE, $value)) {
170 170
                 yield 'str-index-to' => $value;
171 171
             } elseif ($key === 'mail-direct') {
172 172
                 yield $key => $value;
Please login to merge, or discard this patch.