Test Failed
Push — master ( 5ddd1f...502b5c )
by Alexey
04:24
created
system/modules/Ecommerce/objects/DeliveryProvider/CDEK.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,6 +94,6 @@
 block discarded – undo
94 94
         if ($tariff == 139) {
95 95
             return ['online', 'courier'];
96 96
         }
97
-        return ['online','inPickPoint'];
97
+        return ['online', 'inPickPoint'];
98 98
     }
99 99
 }
100 100
\ No newline at end of file
Please login to merge, or discard this patch.
system/modules/Db/objects/Mysql/Query.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -442,7 +442,7 @@
 block discarded – undo
442 442
         foreach ($query['params'] as $param) {
443 443
             $prepare->bindValue($pos++, $param, is_null($param) ? \PDO::PARAM_NULL : \PDO::PARAM_STR);
444 444
         }
445
-        $key = \App::$cur->log->start('query: '.$query['query']);
445
+        $key = \App::$cur->log->start('query: ' . $query['query']);
446 446
         $prepare->execute();
447 447
         \App::$cur->log->end($key);
448 448
         $this->curInstance->lastQuery = $query;
Please login to merge, or discard this patch.
system/modules/View/View.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -309,10 +309,10 @@
 block discarded – undo
309 309
             $hash = md5($hash);
310 310
             ?>
311 311
             <script>
312
-              var hash = '<?=$hash;?>';
313
-              var files = '<?=http_build_query(['files' => array_keys($urls)]);?>';
312
+              var hash = '<?=$hash; ?>';
313
+              var files = '<?=http_build_query(['files' => array_keys($urls)]); ?>';
314 314
               var timeHash = '<?=$timeMd5?>';
315
-              var id = '<?=$id;?>';
315
+              var id = '<?=$id; ?>';
316 316
 
317 317
               setInterval(function () {
318 318
                 // 1. Создаём новый объект XMLHttpRequest
Please login to merge, or discard this patch.