Test Failed
Push — master ( 2a8a67...5ddd1f )
by Alexey
04:25
created
system/modules/Users/models/User/Info.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -86,6 +86,9 @@
 block discarded – undo
86 86
         ];
87 87
     }
88 88
 
89
+    /**
90
+     * @return string
91
+     */
89 92
     public function name() {
90 93
         if ($this->first_name . $this->last_name . $this->middle_name) {
91 94
             $name = '';
Please login to merge, or discard this patch.
system/modules/Ui/Controllers/DataManagerController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@
 block discarded – undo
144 144
         }
145 145
 
146 146
         $result->content['rows'] = ob_get_contents();
147
-        $result->content['summary'] =  $dataManager->getSummary($request['params'], $request['model']);
147
+        $result->content['summary'] = $dataManager->getSummary($request['params'], $request['model']);
148 148
         ob_clean();
149 149
 
150 150
         $result->content['pages'] = '';
Please login to merge, or discard this patch.
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/Inji/Tools.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -452,6 +452,9 @@
 block discarded – undo
452 452
         }
453 453
     }
454 454
 
455
+    /**
456
+     * @param string $dir
457
+     */
455 458
     public static function getDirContents($dir, &$results = array(), $curPath = '') {
456 459
         $files = scandir($dir);
457 460
         foreach ($files as $key => $value) {
Please login to merge, or discard this patch.
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.