Completed
Pull Request — master (#141)
by Bhanu
37:51 queued 34s
created
dhtmlxSuite_v50_std/samples/dhtmlxTreeView/common/connector/db_common.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -9,19 +9,19 @@
 block discarded – undo
9 9
 **/
10 10
 class DataRequestConfig
11 11
 {
12
-    private $filters;    //!< array of filtering rules
13
-    private $relation = false;    //!< ID or other element used for linking hierarchy
14
-    private $sort_by;    //!< sorting field
15
-    private $start;    //!< start of requested data
16
-    private $count;    //!< length of requested data
12
+    private $filters; //!< array of filtering rules
13
+    private $relation = false; //!< ID or other element used for linking hierarchy
14
+    private $sort_by; //!< sorting field
15
+    private $start; //!< start of requested data
16
+    private $count; //!< length of requested data
17 17
 
18 18
     private $order = false;
19 19
     private $user;
20 20
     private $version;
21 21
 
22 22
     //for render_sql
23
-    private $source;    //!< souce table or another source destination
24
-    private $fieldset;    //!< set of data, which need to be retrieved from source
23
+    private $source; //!< souce table or another source destination
24
+    private $fieldset; //!< set of data, which need to be retrieved from source
25 25
 
26 26
     /*! constructor
27 27
 
Please login to merge, or discard this patch.
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -498,6 +498,10 @@
 block discarded – undo
498 498
         @return 
499 499
             list of data fields ( ready to be used in SQL query )
500 500
     */
501
+
502
+    /**
503
+     * @param DBDataWrapper $db
504
+     */
501 505
     public function db_names_list($db)
502 506
     {
503 507
         $out = [];
Please login to merge, or discard this patch.
samples/dhtmlxTreeView/common/connector/dataprocessor.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
         $this->status = $status;
441 441
     }
442 442
 
443
-   /*! set id
443
+    /*! set id
444 444
     @param  id
445 445
         id value
446 446
     */
@@ -450,7 +450,7 @@  discard block
 block discarded – undo
450 450
         LogMaster::log('Change id: '.$id);
451 451
     }
452 452
 
453
-   /*! set id
453
+    /*! set id
454 454
     @param  id
455 455
         id value
456 456
     */
Please login to merge, or discard this patch.
samples/dhtmlxDataView/common/connector/dataprocessor.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
         $this->status = $status;
441 441
     }
442 442
 
443
-   /*! set id
443
+    /*! set id
444 444
     @param  id
445 445
         id value
446 446
     */
@@ -450,7 +450,7 @@  discard block
 block discarded – undo
450 450
         LogMaster::log('Change id: '.$id);
451 451
     }
452 452
 
453
-   /*! set id
453
+    /*! set id
454 454
     @param  id
455 455
         id value
456 456
     */
Please login to merge, or discard this patch.
plugins/dhtmlxSuite_v50_std/samples/dhtmlxList/common/connector/update.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -147,6 +147,9 @@
 block discarded – undo
147 147
         $this->demu = $path;
148 148
     }
149 149
 
150
+    /**
151
+     * @param EventMaster $master
152
+     */
150 153
     public function set_event($master, $name)
151 154
     {
152 155
         $this->event = $master;
Please login to merge, or discard this patch.
dhtmlxSuite_v50_std/samples/dhtmlxTreeView/common/connector/update.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -147,6 +147,9 @@
 block discarded – undo
147 147
         $this->demu = $path;
148 148
     }
149 149
 
150
+    /**
151
+     * @param EventMaster $master
152
+     */
150 153
     public function set_event($master, $name)
151 154
     {
152 155
         $this->event = $master;
Please login to merge, or discard this patch.