Completed
Push — master ( 308a3c...ebb499 )
by Alexey
08:08
created
system/modules/Ui/objects/DataManager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -329,6 +329,9 @@
 block discarded – undo
329 329
         return $rows;
330 330
     }
331 331
 
332
+    /**
333
+     * @param DataManager $dataManager
334
+     */
332 335
     public static function drawCol($item, $colName, $params = [], $dataManager = null, $originalCol = '', $originalItem = null)
333 336
     {
334 337
         $modelName = get_class($item);
Please login to merge, or discard this patch.
system/Inji/Module.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
      * Get installed modules for app
133 133
      * 
134 134
      * @param \App $app
135
-     * @param boolean|\App $primary
135
+     * @param App $primary
136 136
      * @return array
137 137
      */
138 138
     public static function getInstalled($app, $primary = false)
Please login to merge, or discard this patch.
system/Inji/Model.php 1 patch
Doc Comments   +7 added lines, -4 removed lines patch added patch discarded remove patch
@@ -437,6 +437,9 @@  discard block
 block discarded – undo
437 437
         }
438 438
     }
439 439
 
440
+    /**
441
+     * @param boolean $new
442
+     */
440 443
     public function logChanges($new) {
441 444
         if (!App::$cur->db->connect || !App::$cur->dashboard) {
442 445
             return false;
@@ -539,7 +542,7 @@  discard block
 block discarded – undo
539 542
     /**
540 543
      * Information extractor for col relations path
541 544
      * 
542
-     * @param string|array $info
545
+     * @param string $info
543 546
      * @return array
544 547
      */
545 548
     public static function parseColRecursion($info) {
@@ -625,7 +628,7 @@  discard block
 block discarded – undo
625 628
      * Generate params string for col by name
626 629
      * 
627 630
      * @param string $colName
628
-     * @return boolean|string
631
+     * @return false|string
629 632
      */
630 633
     public static function genColParams($colName) {
631 634
         if (empty(static::$cols[$colName]) || static::$storage['type'] == 'moduleConfig') {
@@ -780,7 +783,7 @@  discard block
 block discarded – undo
780 783
     /**
781 784
      * return relations list
782 785
      * 
783
-     * @return array
786
+     * @return string
784 787
      */
785 788
     public static function relations() {
786 789
         return [];
@@ -1303,7 +1306,7 @@  discard block
 block discarded – undo
1303 1306
      * 
1304 1307
      * @param array $params
1305 1308
      * @param array $where
1306
-     * @return boolean
1309
+     * @return false|null
1307 1310
      */
1308 1311
     public static function update($params, $where = []) {
1309 1312
         static::fixPrefix($params);
Please login to merge, or discard this patch.
system/modules/Users/Users.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -116,6 +116,9 @@  discard block
 block discarded – undo
116 116
         }
117 117
     }
118 118
 
119
+    /**
120
+     * @param string $user_mail
121
+     */
119 122
     public function passre($user_mail) {
120 123
         $user = $this->get($user_mail, 'mail');
121 124
         if (!$user) {
@@ -400,6 +403,9 @@  discard block
 block discarded – undo
400 403
         return $return;
401 404
     }
402 405
 
406
+    /**
407
+     * @param integer $cat_id
408
+     */
403 409
     public function addUserActivity($user_id, $cat_id, $text = '') {
404 410
         $ua = new Users\Activity([
405 411
             'user_id' => $user_id,
Please login to merge, or discard this patch.
system/modules/YandexExport/appControllers/YandexExportController.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -11,6 +11,10 @@
 block discarded – undo
11 11
 
12 12
     function indexAction() {
13 13
 
14
+        /**
15
+         * @param DOMDocument $xml
16
+         * @param string $nodeName
17
+         */
14 18
         function addToXml($xml, $parent, $nodeName, $text) {
15 19
             $node = $parent->appendChild($xml->createElement($nodeName));
16 20
             $node->appendChild($xml->createTextNode($text));
Please login to merge, or discard this patch.