Test Failed
Push — master ( 2a8a67...5ddd1f )
by Alexey
04:25
created
system/Inji/Log.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -89,6 +89,9 @@
 block discarded – undo
89 89
         App::$cur->log->forceView = $bool;
90 90
     }
91 91
 
92
+    /**
93
+     * @param integer $size
94
+     */
92 95
     public function convertSize($size) {
93 96
 
94 97
         if ($size < 1024) {
Please login to merge, or discard this patch.
system/modules/Daemon/Daemon.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -69,6 +69,9 @@
 block discarded – undo
69 69
         return $path;
70 70
     }
71 71
 
72
+    /**
73
+     * @param string $item
74
+     */
72 75
     function unserialize($item) {
73 76
         return $this->serializer()->unserialize($item);
74 77
     }
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.