Completed
Push — master ( 45724e...d399d9 )
by Daniel
06:49
created
source/DomComponentsByDanielGP.php 1 patch
Doc Comments   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -108,9 +108,7 @@  discard block
 block discarded – undo
108 108
     /**
109 109
      * Returns a table from an query
110 110
      *
111
-     * @param array $gArray
112
-     * @param array $features
113
-     * @param boolean $bKeepFullPage
111
+     * @param boolean $bKpFlPge
114 112
      * @return string
115 113
      */
116 114
     protected function setArrayToTable($aElements, $ftrs = null, $bKpFlPge = true)
@@ -580,7 +578,7 @@  discard block
 block discarded – undo
580 578
     /**
581 579
      * Returns css link to a given file
582 580
      *
583
-     * @param string $cssFile
581
+     * @param string $cssFileName
584 582
      * @return string
585 583
      */
586 584
     protected function setCssFile($cssFileName, $hostsWithoutCDNrq = null)
@@ -676,6 +674,9 @@  discard block
 block discarded – undo
676 674
         return '';
677 675
     }
678 676
 
677
+    /**
678
+     * @param string $outputType
679
+     */
679 680
     private function setGZipedUnsafe($outputType)
680 681
     {
681 682
         $rqst = new \Symfony\Component\HttpFoundation\Request;
@@ -982,6 +983,9 @@  discard block
 block discarded – undo
982 983
         return $addingUrl;
983 984
     }
984 985
 
986
+    /**
987
+     * @param integer $groupCounter
988
+     */
985 989
     protected function updateDivTitleName($rememberGroupVal, $groupCounter)
986 990
     {
987 991
         $jsContent = '$(document).ready(function() { $("#tab_'
Please login to merge, or discard this patch.
source/DomDynamicSelectByDanielGP.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -57,6 +57,9 @@  discard block
 block discarded – undo
57 57
         return '';
58 58
     }
59 59
 
60
+    /**
61
+     * @param string $identifier
62
+     */
60 63
     private function featureArraySimpleDirect($featArray, $identifier)
61 64
     {
62 65
         if (in_array($identifier, $featArray)) {
@@ -65,6 +68,9 @@  discard block
 block discarded – undo
65 68
         return '';
66 69
     }
67 70
 
71
+    /**
72
+     * @param string $identifier
73
+     */
68 74
     private function featureArraySimpleTranslated($featArray, $identifier)
69 75
     {
70 76
         $translation = [
@@ -77,6 +83,9 @@  discard block
 block discarded – undo
77 83
         return '';
78 84
     }
79 85
 
86
+    /**
87
+     * @param string $identifier
88
+     */
80 89
     private function featureArrayAssociative($featArray, $identifier)
81 90
     {
82 91
         if (in_array($identifier, $featArray)) {
@@ -85,6 +94,9 @@  discard block
 block discarded – undo
85 94
         return '';
86 95
     }
87 96
 
97
+    /**
98
+     * @param string $selectName
99
+     */
88 100
     protected function setArrayToSelectNotReadOnly($aElements, $sDefaultValue, $selectName, $featArray = null)
89 101
     {
90 102
         if (!is_array($featArray)) {
Please login to merge, or discard this patch.