Test Failed
Push — master ( 89dfd0...61f61c )
by Alexey
11:02 queued 06:40
created
system/Inji/BowerCmd.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -61,6 +61,10 @@
 block discarded – undo
61 61
         Inji::$inst->unBlockParallel();
62 62
     }
63 63
 
64
+    /**
65
+     * @param string $command
66
+     * @param string $path
67
+     */
64 68
     public static function command($command, $needOutput = true, $path = null) {
65 69
         while (!Inji::$inst->blockParallel()) {
66 70
             sleep(2);
Please login to merge, or discard this patch.
system/modules/Exchange1c/objects/Parser/Orders.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,6 +15,9 @@
 block discarded – undo
15 15
 
16 16
     public $xml = null;
17 17
 
18
+    /**
19
+     * @param \SimpleXMLElement $xml
20
+     */
18 21
     public function __construct($xml) {
19 22
         $this->xml = $xml;
20 23
     }
Please login to merge, or discard this patch.
system/modules/Files/models/File.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -40,6 +40,9 @@
 block discarded – undo
40 40
         }
41 41
     }
42 42
 
43
+    /**
44
+     * @return string
45
+     */
43 46
     public function getRealPath() {
44 47
         $sitePath = \App::$primary->path;
45 48
         return "{$sitePath}{$this->path}";
Please login to merge, or discard this patch.
system/modules/Modules/Modules.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -43,6 +43,10 @@
 block discarded – undo
43 43
         return $modelCols;
44 44
     }
45 45
 
46
+    /**
47
+     * @param string $colPrefix
48
+     * @param string $tableName
49
+     */
46 50
     public function parseColsForTable($cols, $colPrefix, $tableName) {
47 51
 
48 52
         $colsExist = App::$cur->db->getTableCols($tableName);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     }
24 24
 
25 25
     public function parseColsForModel($cols = []) {
26
-        $modelCols = [ 'labels' => [], 'cols' => [], 'relations' => []];
26
+        $modelCols = ['labels' => [], 'cols' => [], 'relations' => []];
27 27
         foreach ($cols as $col) {
28 28
             $modelCols['labels'][$col['code']] = $col['label'];
29 29
             $colType = !empty($col['type']['primary']) ? $col['type']['primary'] : $col['type'];
Please login to merge, or discard this patch.
system/modules/Ui/objects/Table.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@
 block discarded – undo
23 23
     public $attributes = [];
24 24
     public $indexCol = null;
25 25
 
26
+    /**
27
+     * @param string[] $cols
28
+     */
26 29
     public function setCols($cols) {
27 30
         $this->cols = $cols;
28 31
     }
Please login to merge, or discard this patch.
system/modules/View/View.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -145,6 +145,9 @@  discard block
 block discarded – undo
145 145
         return $result[1];
146 146
     }
147 147
 
148
+    /**
149
+     * @param string $source
150
+     */
148 151
     public function parseSource($source) {
149 152
         $tags = $this->parseRaw($source);
150 153
         foreach ($tags as $rawTag) {
@@ -190,6 +193,9 @@  discard block
 block discarded – undo
190 193
         return substr($source, ($pos + strlen($rawTag) + 2));
191 194
     }
192 195
 
196
+    /**
197
+     * @param string $type
198
+     */
193 199
     public function getHref($type, $params) {
194 200
         $href = '';
195 201
         if (is_string($params)) {
@@ -518,6 +524,9 @@  discard block
 block discarded – undo
518 524
         }
519 525
     }
520 526
 
527
+    /**
528
+     * @param string $type
529
+     */
521 530
     public function customAsset($type, $asset, $lib = false) {
522 531
         if (!$lib) {
523 532
             $this->dynAssets[$type][] = $asset;
@@ -540,6 +549,9 @@  discard block
 block discarded – undo
540 549
         }
541 550
     }
542 551
 
552
+    /**
553
+     * @param string $lineParams
554
+     */
543 555
     public function widget($_widgetName, $_params = [], $lineParams = null) {
544 556
         $_paths = $this->getWidgetPaths($_widgetName);
545 557
         $find = false;
Please login to merge, or discard this patch.
system/objects/CodeGenerator.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@
 block discarded – undo
30 30
         return $return;
31 31
     }
32 32
 
33
+    /**
34
+     * @param string $path
35
+     */
33 36
     public static function parseClass($path) {
34 37
         $code = file_get_contents($path);
35 38
 
Please login to merge, or discard this patch.
Braces   +9 added lines, -7 removed lines patch added patch discarded remove patch
@@ -12,20 +12,22 @@
 block discarded – undo
12 12
 
13 13
     public static function genArray($data, $level = 0) {
14 14
         $return = '';
15
-        if ($level == 0)
16
-            $return = "[";
15
+        if ($level == 0) {
16
+                    $return = "[";
17
+        }
17 18
         foreach ($data as $key => $item) {
18 19
             $return .= "\n" . str_repeat(' ', ($level * 4 + 4)) . "'{$key}' => ";
19
-            if (!is_array($item))
20
-                $return .= "'{$item}',";
21
-            else {
20
+            if (!is_array($item)) {
21
+                            $return .= "'{$item}',";
22
+            } else {
22 23
                 $return .= "[";
23 24
                 $return .= rtrim(self::genArray($item, $level + 1), ',');
24 25
                 $return .= "\n" . str_repeat(' ', ($level * 4 + 4)) . "],";
25 26
             }
26 27
         }
27
-        if ($level == 0)
28
-            $return = rtrim($return, ',') . "\n];";
28
+        if ($level == 0) {
29
+                    $return = rtrim($return, ',') . "\n];";
30
+        }
29 31
 
30 32
         return $return;
31 33
     }
Please login to merge, or discard this patch.
system/modules/Migrations/install_script.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-return function ($step = NULL, $params = []) {
3
+return function ($step = null, $params = []) {
4 4
     
5 5
 };
Please login to merge, or discard this patch.
system/modules/UserForms/install_script.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-return function ($step = NULL, $params = []) {
3
+return function ($step = null, $params = []) {
4 4
     
5 5
 };
Please login to merge, or discard this patch.