Completed
Push — master ( 6b7a6d...74143b )
by Gino
20s
created
class/files/admin/AdminFooter.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@
 block discarded – undo
191 191
     /**
192 192
     *  @public function render
193 193
     *  @param null
194
-    * @return bool|string
194
+    * @return null|string
195 195
     */
196 196
     public function render()
197 197
     {
Please login to merge, or discard this patch.
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -28,14 +28,14 @@  discard block
 block discarded – undo
28 28
 class AdminFooter extends TDMCreateFile
29 29
 {
30 30
     /**
31
-    * @var string
32
-    */
31
+     * @var string
32
+     */
33 33
     private $xc = null;
34 34
 
35 35
     /**
36
-    *  @public function constructor
37
-    *  @param null
38
-    */
36
+     *  @public function constructor
37
+     *  @param null
38
+     */
39 39
 
40 40
     public function __construct()
41 41
     {
@@ -45,9 +45,9 @@  discard block
 block discarded – undo
45 45
     }
46 46
 
47 47
     /**
48
-    *  @static function getInstance
49
-    * @return AdminFooter
50
-    */
48
+     *  @static function getInstance
49
+     * @return AdminFooter
50
+     */
51 51
     public static function getInstance()
52 52
     {
53 53
         static $instance = false;
@@ -59,10 +59,10 @@  discard block
 block discarded – undo
59 59
     }
60 60
 
61 61
     /**
62
-    *  @public function write
63
-    *  @param string $module
64
-    *  @param string $filename
65
-    */
62
+     *  @public function write
63
+     *  @param string $module
64
+     *  @param string $filename
65
+     */
66 66
     public function write($module, $filename)
67 67
     {
68 68
         $this->setModule($module);
@@ -70,10 +70,10 @@  discard block
 block discarded – undo
70 70
     }
71 71
 
72 72
     /**
73
-    *  @public function render
74
-    *  @param null
75
-    * @return bool|string
76
-    */
73
+     *  @public function render
74
+     *  @param null
75
+     * @return bool|string
76
+     */
77 77
     public function render()
78 78
     {
79 79
         $module = $this->getModule();
Please login to merge, or discard this patch.
class/files/admin/AdminIndex.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@
 block discarded – undo
191 191
     /**
192 192
     *  @public function render
193 193
     *  @param null
194
-    * @return bool|string
194
+    * @return null|string
195 195
     */
196 196
     public function render()
197 197
     {
Please login to merge, or discard this patch.
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
 class AdminIndex extends TDMCreateFile
29 29
 {
30 30
     /**
31
-    *  @public function constructor
32
-    *  @param null
33
-    */
31
+     *  @public function constructor
32
+     *  @param null
33
+     */
34 34
 
35 35
     public function __construct()
36 36
     {
@@ -38,10 +38,10 @@  discard block
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-    *  @static function getInstance
42
-    *  @param null
43
-    * @return AdminIndex
44
-    */
41
+     *  @static function getInstance
42
+     *  @param null
43
+     * @return AdminIndex
44
+     */
45 45
     public static function getInstance()
46 46
     {
47 47
         static $instance = false;
@@ -53,11 +53,11 @@  discard block
 block discarded – undo
53 53
     }
54 54
 
55 55
     /**
56
-    *  @public function write
57
-    *  @param string $module
58
-    *  @param mixed $tables
59
-    *  @param string $filename
60
-    */
56
+     *  @public function write
57
+     *  @param string $module
58
+     *  @param mixed $tables
59
+     *  @param string $filename
60
+     */
61 61
     public function write($module, $tables, $filename)
62 62
     {
63 63
         $this->setModule($module);
@@ -131,10 +131,10 @@  discard block
 block discarded – undo
131 131
     }
132 132
 
133 133
     /**
134
-    *  @public function render
135
-    *  @param null
136
-    * @return bool|string
137
-    */
134
+     *  @public function render
135
+     *  @param null
136
+     * @return bool|string
137
+     */
138 138
     public function render()
139 139
     {
140 140
         $module = $this->getModule();
Please login to merge, or discard this patch.
class/files/docs/DocsFiles.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -253,7 +253,7 @@
 block discarded – undo
253 253
     *  @param null
254 254
     */
255 255
     /**
256
-     * @return bool|string
256
+     * @return null|string
257 257
      */
258 258
     public function render()
259 259
     {
Please login to merge, or discard this patch.
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
 class DocsFiles extends TDMCreateFile
29 29
 {
30 30
     /**
31
-    *  @public function constructor
32
-    *  @param null
33
-    */
31
+     *  @public function constructor
32
+     *  @param null
33
+     */
34 34
 
35 35
     public function __construct()
36 36
     {
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-    *  @static function getInstance
42
-    *  @param null
43
-    */
41
+     *  @static function getInstance
42
+     *  @param null
43
+     */
44 44
     /**
45 45
      * @return DocsFiles
46 46
      */
@@ -55,10 +55,10 @@  discard block
 block discarded – undo
55 55
     }
56 56
 
57 57
     /**
58
-    *  @public function write
59
-    *  @param string $module
60
-    *  @param string $filename
61
-    */
58
+     *  @public function write
59
+     *  @param string $module
60
+     *  @param string $filename
61
+     */
62 62
     /**
63 63
      * @param $module
64 64
      * @param $filename
@@ -70,11 +70,11 @@  discard block
 block discarded – undo
70 70
     }
71 71
 
72 72
     /**
73
-    *  @public function getChangeLogFile
74
-    *  @param string $moduleDirname
75
-    *  @param string $mod_version
76
-    *  @param string $mod_author
77
-    */
73
+     *  @public function getChangeLogFile
74
+     *  @param string $moduleDirname
75
+     *  @param string $mod_version
76
+     *  @param string $mod_author
77
+     */
78 78
     /**
79 79
      * @param $moduleDirname
80 80
      * @param $mod_version
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     }
97 97
 
98 98
     /**
99
-    *  @public function getCreditsFile
99
+     *  @public function getCreditsFile
100 100
      * @param $mod_author
101 101
      * @param $mod_credits
102 102
      * @param $mod_author_website_url
@@ -123,8 +123,8 @@  discard block
 block discarded – undo
123 123
     }
124 124
 
125 125
     /**
126
-    *  @public function getInstallFile
127
-    *  @param null
126
+     *  @public function getInstallFile
127
+     *  @param null
128 128
      * @return string
129 129
      */
130 130
     public function getInstallFile()
@@ -140,8 +140,8 @@  discard block
 block discarded – undo
140 140
     }
141 141
 
142 142
     /**
143
-    *  @public function getReadmeFile
144
-    *  @param null
143
+     *  @public function getReadmeFile
144
+     *  @param null
145 145
      * @return string
146 146
      */
147 147
     public function getReadmeFile()
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     }
159 159
 
160 160
     /**
161
-    *  @public function getLangDiffFile
161
+     *  @public function getLangDiffFile
162 162
      * @param $mod_version
163 163
      *
164 164
      * @return string
@@ -176,8 +176,8 @@  discard block
 block discarded – undo
176 176
     }
177 177
 
178 178
     /**
179
-    *  @public function render
180
-    *  @param null
179
+     *  @public function render
180
+     *  @param null
181 181
      * @return bool|string
182 182
      */
183 183
     public function render()
Please login to merge, or discard this patch.
class/files/classes/ClassFormElements.php 3 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -130,9 +130,9 @@
 block discarded – undo
130 130
         $ret .= $pc->getPhpCodeArray('editorConfigs', null, false, "\t\t");
131 131
         $getConfig = $xc->getXcGetConfig($moduleDirname, $moduleDirname.'_editor_'.$rpFieldName);
132 132
         $configs = array('name' => "'{$fieldName}'", 'value' => "\$this->getVar('{$fieldName}', 'e')", 'rows' => 5, 'cols' => 40,
133
-                        'width' => "'100%'", 'height' => "'400px'", 'editor' => $getConfig, );
133
+                        'width' => "'100%'", 'height' => "'400px'", 'editor' => $getConfig,);
134 134
         foreach ($configs as $c => $d) {
135
-            $ret .= $xc->getXcEqualsOperator("\$editorConfigs['{$c}']", $d,  null, false, "\t\t");
135
+            $ret .= $xc->getXcEqualsOperator("\$editorConfigs['{$c}']", $d, null, false, "\t\t");
136 136
         }
137 137
         $formEditor = $cc->getClassXoopsFormEditor('', $language, $fieldName, 'editorConfigs', true);
138 138
         $ret .= $cc->getClassAddElement('form', $formEditor.$required);
Please login to merge, or discard this patch.
Doc Comments   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@  discard block
 block discarded – undo
46 46
     /**
47 47
     *  @public function initForm
48 48
      *
49
-     * @param $module
50
-     * @param $table
49
+     * @param string $module
50
+     * @param string $table
51 51
      */
52 52
     public function initForm($module, $table)
53 53
     {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     /**
59 59
      * @private function getXoopsFormText
60 60
      *
61
-     * @param        $language
61
+     * @param        string $language
62 62
      * @param        $fieldName
63 63
      * @param        $fieldDefault
64 64
      * @param string $required
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     /**
89 89
     *  @private function getXoopsFormText
90 90
      *
91
-     * @param $language
91
+     * @param string $language
92 92
      * @param $fieldName
93 93
      * @param $required
94 94
      *
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     /**
111 111
     *  @private function getXoopsFormDhtmlTextArea
112 112
      *
113
-     * @param $language
113
+     * @param string $language
114 114
      * @param $moduleDirname
115 115
      * @param $fieldName
116 116
      * @param $required
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     /**
144 144
      * @private function getXoopsFormCheckBox
145 145
      *
146
-     * @param        $language
146
+     * @param        string $language
147 147
      * @param        $tableSoleName
148 148
      * @param        $fieldName
149 149
      * @param        $fieldElementId
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
     /**
206 206
     *  @private function getXoopsFormImageList
207 207
      *
208
-     * @param $language
208
+     * @param string $language
209 209
      * @param $moduleDirname
210 210
      * @param $tableName
211 211
      * @param $tableSoleName
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
     /**
259 259
     *  @private function getXoopsFormSelectFile
260 260
      *
261
-     * @param $language
261
+     * @param string $language
262 262
      * @param $moduleDirname
263 263
      * @param $fieldName
264 264
      * @param $required
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
     /**
310 310
     *  @private function getXoopsFormUrlFile
311 311
      *
312
-     * @param   $language
312
+     * @param   string $language
313 313
      * @param   $moduleDirname
314 314
      * @param   $fieldName
315 315
      * @param   $fieldDefault
@@ -339,7 +339,7 @@  discard block
 block discarded – undo
339 339
     /**
340 340
      * @private function getXoopsFormUploadImage
341 341
      *
342
-     * @param        $language
342
+     * @param        string $language
343 343
      * @param        $moduleDirname
344 344
      * @param        $tableName
345 345
      * @param        $tableSoleName
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
     /**
391 391
     *  @private function getXoopsFormUploadFile
392 392
      *
393
-     * @param $language
393
+     * @param string $language
394 394
      * @param $moduleDirname
395 395
      * @param $tableName
396 396
      * @param $fieldName
@@ -416,7 +416,7 @@  discard block
 block discarded – undo
416 416
     /**
417 417
     *  @private function getXoopsFormColorPicker
418 418
      *
419
-     * @param $language
419
+     * @param string $language
420 420
      * @param $moduleDirname
421 421
      * @param $fieldName
422 422
      * @param $required
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
     /**
441 441
     *  @private function getXoopsFormSelectBox
442 442
      *
443
-     * @param $language
443
+     * @param string $language
444 444
      * @param $moduleDirname
445 445
      * @param $tableName
446 446
      * @param $fieldName
@@ -471,7 +471,7 @@  discard block
 block discarded – undo
471 471
     /**
472 472
      * @private function getXoopsFormSelectUser
473 473
      *
474
-     * @param        $language
474
+     * @param        string $language
475 475
      * @param        $moduleDirname
476 476
      * @param        $fieldName
477 477
      * @param string $required
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
     /**
495 495
     *  @private function getXoopsFormRadioYN
496 496
      *
497
-     * @param $language
497
+     * @param string $language
498 498
      * @param $fieldName
499 499
      * @param $required
500 500
      *
@@ -518,7 +518,7 @@  discard block
 block discarded – undo
518 518
     /**
519 519
     *  @private function getXoopsFormTextDateSelect
520 520
      *
521
-     * @param $language
521
+     * @param string $language
522 522
      * @param $fieldName
523 523
      * @param $required
524 524
      *
@@ -542,7 +542,7 @@  discard block
 block discarded – undo
542 542
     /**
543 543
     *  @private function getXoopsFormTable
544 544
      *
545
-     * @param $language
545
+     * @param string $language
546 546
      * @param $moduleDirname
547 547
      * @param $tableName
548 548
      * @param $fieldName
@@ -577,9 +577,9 @@  discard block
 block discarded – undo
577 577
     /**
578 578
      * @private  function getXoopsFormTopic
579 579
      *
580
-     * @param        $language
580
+     * @param        string $language
581 581
      * @param        $moduleDirname
582
-     * @param        $topicTableName
582
+     * @param        string $topicTableName
583 583
      * @param        $fieldId
584 584
      * @param        $fieldPid
585 585
      * @param        $fieldMain
Please login to merge, or discard this patch.
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     }
45 45
 
46 46
     /**
47
-    *  @public function initForm
47
+     *  @public function initForm
48 48
      *
49 49
      * @param $module
50 50
      * @param $table
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     }
87 87
 
88 88
     /**
89
-    *  @private function getXoopsFormText
89
+     *  @private function getXoopsFormText
90 90
      *
91 91
      * @param $language
92 92
      * @param $fieldName
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     }
109 109
 
110 110
     /**
111
-    *  @private function getXoopsFormDhtmlTextArea
111
+     *  @private function getXoopsFormDhtmlTextArea
112 112
      *
113 113
      * @param $language
114 114
      * @param $moduleDirname
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
     }
184 184
 
185 185
     /**
186
-    *  @private function getXoopsFormHidden
186
+     *  @private function getXoopsFormHidden
187 187
      *
188 188
      * @param $fieldName
189 189
      *
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
     }
204 204
 
205 205
     /**
206
-    *  @private function getXoopsFormImageList
206
+     *  @private function getXoopsFormImageList
207 207
      *
208 208
      * @param $language
209 209
      * @param $moduleDirname
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
     }
257 257
 
258 258
     /**
259
-    *  @private function getXoopsFormSelectFile
259
+     *  @private function getXoopsFormSelectFile
260 260
      *
261 261
      * @param $language
262 262
      * @param $moduleDirname
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
     }
308 308
 
309 309
     /**
310
-    *  @private function getXoopsFormUrlFile
310
+     *  @private function getXoopsFormUrlFile
311 311
      *
312 312
      * @param   $language
313 313
      * @param   $moduleDirname
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
     }
389 389
 
390 390
     /**
391
-    *  @private function getXoopsFormUploadFile
391
+     *  @private function getXoopsFormUploadFile
392 392
      *
393 393
      * @param $language
394 394
      * @param $moduleDirname
@@ -414,7 +414,7 @@  discard block
 block discarded – undo
414 414
     }
415 415
 
416 416
     /**
417
-    *  @private function getXoopsFormColorPicker
417
+     *  @private function getXoopsFormColorPicker
418 418
      *
419 419
      * @param $language
420 420
      * @param $moduleDirname
@@ -438,7 +438,7 @@  discard block
 block discarded – undo
438 438
     }
439 439
 
440 440
     /**
441
-    *  @private function getXoopsFormSelectBox
441
+     *  @private function getXoopsFormSelectBox
442 442
      *
443 443
      * @param $language
444 444
      * @param $moduleDirname
@@ -492,7 +492,7 @@  discard block
 block discarded – undo
492 492
     }
493 493
 
494 494
     /**
495
-    *  @private function getXoopsFormRadioYN
495
+     *  @private function getXoopsFormRadioYN
496 496
      *
497 497
      * @param $language
498 498
      * @param $fieldName
@@ -516,7 +516,7 @@  discard block
 block discarded – undo
516 516
     }
517 517
 
518 518
     /**
519
-    *  @private function getXoopsFormTextDateSelect
519
+     *  @private function getXoopsFormTextDateSelect
520 520
      *
521 521
      * @param $language
522 522
      * @param $fieldName
@@ -540,7 +540,7 @@  discard block
 block discarded – undo
540 540
     }
541 541
 
542 542
     /**
543
-    *  @private function getXoopsFormTable
543
+     *  @private function getXoopsFormTable
544 544
      *
545 545
      * @param $language
546 546
      * @param $moduleDirname
@@ -613,7 +613,7 @@  discard block
 block discarded – undo
613 613
     }
614 614
 
615 615
     /**
616
-    *  @private function getXoopsFormTag
616
+     *  @private function getXoopsFormTag
617 617
      *
618 618
      * @param $moduleDirname
619 619
      * @param $fieldId
@@ -641,7 +641,7 @@  discard block
 block discarded – undo
641 641
     }
642 642
 
643 643
     /**
644
-    *  @public function renderElements
644
+     *  @public function renderElements
645 645
      *  @param null
646 646
      * @return string
647 647
      */
Please login to merge, or discard this patch.
class/files/admin/AdminPermissions.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
         $ret .= $xc->getXcXoopsRequest('op', 'op', 'global');
101 101
         $ret .= $xc->getXcLoad('XoopsFormLoader');
102 102
         $optionsSelect = array('global' => "{$language}PERMISSIONS_GLOBAL", 'approve' => "{$language}PERMISSIONS_APPROVE",
103
-                                'submit' => "{$language}PERMISSIONS_SUBMIT", 'view' => "{$language}PERMISSIONS_VIEW", );
103
+                                'submit' => "{$language}PERMISSIONS_SUBMIT", 'view' => "{$language}PERMISSIONS_VIEW",);
104 104
         $formSelect = $xc->getXoopsFormSelectExtraOptions('formSelect', '\'\'', 'op', $optionsSelect, 'onchange="document.fselperm.submit()"');
105 105
         $ret .= $cc->getXoopsSimpleForm('permTableForm', 'formSelect', $formSelect, '\'\'', 'fselperm', 'permissions');
106 106
 
@@ -120,16 +120,16 @@  discard block
 block discarded – undo
120 120
         $cases = array('global' => array("\$formTitle = {$language}PERMISSIONS_GLOBAL;",
121 121
                                         "\$permName = '{$moduleDirname}_ac';",
122 122
                                         "\$permDesc = {$language}PERMISSIONS_GLOBAL_DESC;",
123
-                                        "\$globalPerms = array( '4' => {$language}PERMISSIONS_GLOBAL_4, '8' => {$language}PERMISSIONS_GLOBAL_8, '16' => {$language}PERMISSIONS_GLOBAL_16 );", ),
123
+                                        "\$globalPerms = array( '4' => {$language}PERMISSIONS_GLOBAL_4, '8' => {$language}PERMISSIONS_GLOBAL_8, '16' => {$language}PERMISSIONS_GLOBAL_16 );",),
124 124
                         'approve' => array("\$formTitle = {$language}PERMISSIONS_APPROVE;",
125 125
                                         "\$permName = '{$moduleDirname}_approve';",
126
-                                        "\$permDesc = {$language}PERMISSIONS_APPROVE_DESC;", ),
126
+                                        "\$permDesc = {$language}PERMISSIONS_APPROVE_DESC;",),
127 127
                         'submit' => array("\$formTitle = {$language}PERMISSIONS_SUBMIT;",
128 128
                                         "\$permName = '{$moduleDirname}_submit';",
129
-                                        "\$permDesc = {$language}PERMISSIONS_SUBMIT_DESC;", ),
129
+                                        "\$permDesc = {$language}PERMISSIONS_SUBMIT_DESC;",),
130 130
                         'view' => array("\$formTitle = {$language}PERMISSIONS_VIEW;",
131 131
                                         "\$permName = '{$moduleDirname}_view';",
132
-                                        "\$permDesc = {$language}PERMISSIONS_VIEW_DESC;", ), );
132
+                                        "\$permDesc = {$language}PERMISSIONS_VIEW_DESC;",),);
133 133
 
134 134
         $contentSwitch = $pc->getPhpCodeCaseSwitch($cases, true, false, "\t");
135 135
 
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      * @private function getPermissionsHeader
75 75
      *
76 76
      * @param $module
77
-     * @param $language
77
+     * @param string $language
78 78
      *
79 79
      * @return string
80 80
      */
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     /**
111 111
      *  @private function getPermissionsSwitch
112 112
      *  @param $moduleDirname
113
-     *  @param $language
113
+     *  @param string $language
114 114
      *
115 115
      *  @return string
116 116
      */
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
      *
199 199
      *  @param null
200 200
      *
201
-     *  @return bool|string
201
+     *  @return null|string
202 202
      */
203 203
     public function render()
204 204
     {
Please login to merge, or discard this patch.
class/files/include/IncludeFunctions.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -63,8 +63,8 @@  discard block
 block discarded – undo
63 63
     *  @param string $filename
64 64
     */
65 65
     /**
66
-     * @param $module
67
-     * @param $filename
66
+     * @param string $module
67
+     * @param string $filename
68 68
      */
69 69
     public function write($module, $filename)
70 70
     {
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     *  @param null
78 78
     */
79 79
     /**
80
-     * @return bool|string
80
+     * @return null|string
81 81
      */
82 82
     public function render()
83 83
     {
Please login to merge, or discard this patch.
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
 class IncludeFunctions extends TDMCreateFile
29 29
 {
30 30
     /**
31
-    *  @public function constructor
32
-    *  @param null
33
-    */
31
+     *  @public function constructor
32
+     *  @param null
33
+     */
34 34
 
35 35
     public function __construct()
36 36
     {
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-    *  @static function getInstance
42
-    *  @param null
41
+     *  @static function getInstance
42
+     *  @param null
43 43
      * @return IncludeFunctions
44 44
      */
45 45
     public static function getInstance()
@@ -65,8 +65,8 @@  discard block
 block discarded – undo
65 65
     }
66 66
 
67 67
     /**
68
-    *  @private function getFunctionBlock
69
-    *  @param string $moduleDirname
68
+     *  @private function getFunctionBlock
69
+     *  @param string $moduleDirname
70 70
      *
71 71
      * @return string
72 72
      */
@@ -93,8 +93,8 @@  discard block
 block discarded – undo
93 93
     }
94 94
 
95 95
     /**
96
-    *  @private function getFunctionGetMyItemIds
97
-    *  @param string $moduleDirname
96
+     *  @private function getFunctionGetMyItemIds
97
+     *  @param string $moduleDirname
98 98
      * @param $tableName
99 99
      *
100 100
      * @return string
Please login to merge, or discard this patch.
class/files/user/UserPages.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,9 +76,9 @@  discard block
 block discarded – undo
76 76
     *  @param string $filename
77 77
     */
78 78
     /**
79
-     * @param $module
79
+     * @param string $module
80 80
      * @param $table
81
-     * @param $filename
81
+     * @param string $filename
82 82
      */
83 83
     public function write($module, $table, $filename)
84 84
     {
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     */
95 95
     /**
96 96
      * @param $moduleDirname
97
-     * @param $language
97
+     * @param string $language
98 98
      *
99 99
      * @return string
100 100
      */
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
     *  @param null
217 217
     */
218 218
     /**
219
-     * @return bool|string
219
+     * @return null|string
220 220
      */
221 221
     public function render()
222 222
     {
Please login to merge, or discard this patch.
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
 class UserIndex extends TDMCreateFile
29 29
 {
30 30
     /**
31
-    *  @public function constructor
32
-    *  @param null
33
-    */
31
+     *  @public function constructor
32
+     *  @param null
33
+     */
34 34
 
35 35
     public function __construct()
36 36
     {
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-    *  @static function getInstance
42
-    *  @param null
41
+     *  @static function getInstance
42
+     *  @param null
43 43
      * @return UserIndex
44 44
      */
45 45
     public static function getInstance()
@@ -234,8 +234,8 @@  discard block
 block discarded – undo
234 234
     }
235 235
 
236 236
     /**
237
-    *  @public function render
238
-    *  @param null
237
+     *  @public function render
238
+     *  @param null
239 239
      * @return bool|string
240 240
      */
241 241
     public function render()
Please login to merge, or discard this patch.
class/files/user/UserBroken.php 3 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@
 block discarded – undo
202 202
         $tableMid = $table->getVar('table_mid');
203 203
         $fields = $this->getTableFields($tableMid, $tableId);
204 204
         $cases = array('form' => array($this->getUserBrokenForm($tableName, $language)),
205
-                    'save' => array($this->getUserBrokenSave($moduleDirname, $fields, $tableName, $tableSolename, $tableAutoincrement, $language)), );
205
+                    'save' => array($this->getUserBrokenSave($moduleDirname, $fields, $tableName, $tableSolename, $tableAutoincrement, $language)),);
206 206
 
207 207
         return $xc->getXcSwitch('op', $cases, true);
208 208
     }
Please login to merge, or discard this patch.
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,9 +54,9 @@  discard block
 block discarded – undo
54 54
 
55 55
     /**
56 56
      *  @public function write
57
-     *  @param $module
57
+     *  @param string $module
58 58
      *  @param mixed $table
59
-     *  @param $filename
59
+     *  @param string $filename
60 60
      */
61 61
     public function write($module, $table, $filename)
62 62
     {
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
      *  @param $tableName
177 177
      *  @param $tableSoleName
178 178
      *  @param $tableAutoincrement
179
-     *  @param $language
179
+     *  @param string $language
180 180
      * @return bool|string
181 181
       */
182 182
     private function getUserBrokenSwitch($moduleDirname, $tableName, $tableSoleName, $tableAutoincrement, $language)
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
     /**
196 196
      *  @public function render
197 197
      *  @param null
198
-     * @return bool|string
198
+     * @return null|string
199 199
      */
200 200
     public function render()
201 201
     {
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -171,14 +171,14 @@
 block discarded – undo
171 171
     }
172 172
 
173 173
     /**
174
-      *  @private function getUserSubmitSwitch
175
-      *  @param $moduleDirname
174
+     *  @private function getUserSubmitSwitch
175
+     *  @param $moduleDirname
176 176
      *  @param $tableName
177 177
      *  @param $tableSoleName
178 178
      *  @param $tableAutoincrement
179 179
      *  @param $language
180 180
      * @return bool|string
181
-      */
181
+     */
182 182
     private function getUserBrokenSwitch($moduleDirname, $tableName, $tableSoleName, $tableAutoincrement, $language)
183 183
     {
184 184
         $xc = TDMCreateXoopsCode::getInstance();
Please login to merge, or discard this patch.
class/files/language/LanguageModinfo.php 3 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
             }
293 293
         }
294 294
         $getDefinesConf = array('NUMB_COL' => 'Number Columns', 'NUMB_COL_DESC' => 'Number Columns to View.', 'DIVIDEBY' => 'Divide By', 'DIVIDEBY_DESC' => 'Divide by columns number.',
295
-                                'TABLE_TYPE' => 'Table Type', 'TABLE_TYPE_DESC' => 'Table Type is the bootstrap html table.', 'PANEL_TYPE' => 'Panel Type', 'PANEL_TYPE_DESC' => 'Panel Type is the bootstrap html div.', 'IDPAYPAL' => 'Paypal ID', 'IDPAYPAL_DESC' => 'Insert here your PayPal ID for donactions.', 'ADVERTISE' => 'Advertisement Code', 'ADVERTISE_DESC' => 'Insert here the advertisement code', 'MAINTAINEDBY' => 'Maintained By', 'MAINTAINEDBY_DESC' => 'Allow url of support site or community', 'BOOKMARKS' => 'Social Bookmarks', 'BOOKMARKS_DESC' => 'Show Social Bookmarks in the single page', 'FACEBOOK_COMMENTS' => 'Facebook comments', 'FACEBOOK_COMMENTS_DESC' => 'Allow Facebook comments in the single page', 'DISQUS_COMMENTS' => 'Disqus comments', 'DISQUS_COMMENTS_DESC' => 'Allow Disqus comments in the single page', );
295
+                                'TABLE_TYPE' => 'Table Type', 'TABLE_TYPE_DESC' => 'Table Type is the bootstrap html table.', 'PANEL_TYPE' => 'Panel Type', 'PANEL_TYPE_DESC' => 'Panel Type is the bootstrap html div.', 'IDPAYPAL' => 'Paypal ID', 'IDPAYPAL_DESC' => 'Insert here your PayPal ID for donactions.', 'ADVERTISE' => 'Advertisement Code', 'ADVERTISE_DESC' => 'Insert here the advertisement code', 'MAINTAINEDBY' => 'Maintained By', 'MAINTAINEDBY_DESC' => 'Allow url of support site or community', 'BOOKMARKS' => 'Social Bookmarks', 'BOOKMARKS_DESC' => 'Show Social Bookmarks in the single page', 'FACEBOOK_COMMENTS' => 'Facebook comments', 'FACEBOOK_COMMENTS_DESC' => 'Allow Facebook comments in the single page', 'DISQUS_COMMENTS' => 'Disqus comments', 'DISQUS_COMMENTS_DESC' => 'Allow Disqus comments in the single page',);
296 296
         foreach ($getDefinesConf as $defc => $descc) {
297 297
             $ret .= $df->getDefine($language, $defc, $descc);
298 298
         }
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
         $stuTableSoleName = strtoupper($tableSoleName);
318 318
         $ucfTableSoleName = ucfirst($tableSoleName);
319 319
         $getDefinesNotif = array('GLOBAL_NOTIFY' => 'Global notify', 'GLOBAL_NOTIFY_DESC' => 'Global notify desc', 'CATEGORY_NOTIFY' => 'Category notify',
320
-                                'CATEGORY_NOTIFY_DESC' => 'Category notify desc', $stuTableSoleName.'_NOTIFY' => $ucfTableSoleName.' notify', $stuTableSoleName.'_NOTIFY_DESC' => $ucfTableSoleName.' notify desc', 'GLOBAL_NEWCATEGORY_NOTIFY' => 'Global newcategory notify', 'GLOBAL_NEWCATEGORY_NOTIFY_CAPTION' => 'Global newcategory notify caption', 'GLOBAL_NEWCATEGORY_NOTIFY_DESC' => 'Global newcategory notify desc', 'GLOBAL_NEWCATEGORY_NOTIFY_SUBJECT' => 'Global newcategory notify subject', 'GLOBAL_'.$stuTableSoleName.'MODIFY_NOTIFY' => 'Global '.$tableSoleName.'modify notify', 'GLOBAL_'.$stuTableSoleName.'MODIFY_NOTIFY_CAPTION' => 'Global '.$tableSoleName.' modify notify caption', 'GLOBAL_'.$stuTableSoleName.'MODIFY_NOTIFY_DESC' => 'Global '.$tableSoleName.'modify notify desc', 'GLOBAL_'.$stuTableSoleName.'MODIFY_NOTIFY_SUBJECT' => 'Global '.$tableSoleName.' modify notify subject', 'GLOBAL_'.$stuTableSoleName.'BROKEN_NOTIFY' => 'Global '.$tableSoleName.' broken notify', 'GLOBAL_'.$stuTableSoleName.'BROKEN_NOTIFY_CAPTION' => 'Global '.$tableSoleName.'broken notify caption', 'GLOBAL_'.$stuTableSoleName.'BROKEN_NOTIFY_DESC' => 'Global '.$tableSoleName.'broken notify desc', 'GLOBAL_'.$stuTableSoleName.'BROKEN_NOTIFY_SUBJECT' => 'Global '.$tableSoleName.'broken notify subject', 'GLOBAL_'.$stuTableSoleName.'SUBMIT_NOTIFY' => 'Global '.$tableSoleName.' submit notify', 'GLOBAL_'.$stuTableSoleName.'SUBMIT_NOTIFY_CAPTION' => 'Global '.$tableSoleName.' submit notify caption', 'GLOBAL_'.$stuTableSoleName.'SUBMIT_NOTIFY_DESC' => 'Global '.$tableSoleName.'submit notify desc', 'GLOBAL_'.$stuTableSoleName.'SUBMIT_NOTIFY_SUBJECT' => 'Global '.$tableSoleName.'submit notify subject', 'GLOBAL_NEW'.$stuTableSoleName.'_NOTIFY' => 'Global new'.$tableSoleName.' notify', 'GLOBAL_NEW'.$stuTableSoleName.'_NOTIFY_CAPTION' => 'Global new'.$tableSoleName.' notify caption', 'GLOBAL_NEW'.$stuTableSoleName.'_NOTIFY_DESC' => 'Global new'.$tableSoleName.' notify desc', 'GLOBAL_NEW'.$stuTableSoleName.'_NOTIFY_SUBJECT' => 'Global new'.$tableSoleName.' notify subject', 'CATEGORY_'.$stuTableSoleName.'SUBMIT_NOTIFY' => 'Category '.$tableSoleName.'submit notify', 'CATEGORY_'.$stuTableSoleName.'SUBMIT_NOTIFY_CAPTION' => 'Category '.$tableSoleName.' submit notify caption', 'CATEGORY_'.$stuTableSoleName.'SUBMIT_NOTIFY_DESC' => 'Category '.$tableSoleName.' submit notify desc', 'CATEGORY_'.$stuTableSoleName.'SUBMIT_NOTIFY_SUBJECT' => 'Category '.$tableSoleName.' submit notify subject', 'CATEGORY_NEW'.$stuTableSoleName.'_NOTIFY' => 'Category new'.$tableSoleName.' notify', 'CATEGORY_NEW'.$stuTableSoleName.'_NOTIFY_CAPTION' => 'Category new'.$tableSoleName.' notify caption', 'CATEGORY_NEW'.$stuTableSoleName.'_NOTIFY_DESC' => 'Category new'.$tableSoleName.' notify desc', 'CATEGORY_NEW'.$stuTableSoleName.'_NOTIFY_SUBJECT' => 'Category new'.$tableSoleName.' notify subject', $stuTableSoleName.'_APPROVE_NOTIFY' => $ucfTableSoleName.' approve notify', $stuTableSoleName.'_APPROVE_NOTIFY_CAPTION' => $ucfTableSoleName.' approve notify caption', $stuTableSoleName.'_APPROVE_NOTIFY_DESC' => $ucfTableSoleName.' approve notify desc', $stuTableSoleName.'_APPROVE_NOTIFY_SUBJECT' => $ucfTableSoleName.' approve notify subject', );
320
+                                'CATEGORY_NOTIFY_DESC' => 'Category notify desc', $stuTableSoleName.'_NOTIFY' => $ucfTableSoleName.' notify', $stuTableSoleName.'_NOTIFY_DESC' => $ucfTableSoleName.' notify desc', 'GLOBAL_NEWCATEGORY_NOTIFY' => 'Global newcategory notify', 'GLOBAL_NEWCATEGORY_NOTIFY_CAPTION' => 'Global newcategory notify caption', 'GLOBAL_NEWCATEGORY_NOTIFY_DESC' => 'Global newcategory notify desc', 'GLOBAL_NEWCATEGORY_NOTIFY_SUBJECT' => 'Global newcategory notify subject', 'GLOBAL_'.$stuTableSoleName.'MODIFY_NOTIFY' => 'Global '.$tableSoleName.'modify notify', 'GLOBAL_'.$stuTableSoleName.'MODIFY_NOTIFY_CAPTION' => 'Global '.$tableSoleName.' modify notify caption', 'GLOBAL_'.$stuTableSoleName.'MODIFY_NOTIFY_DESC' => 'Global '.$tableSoleName.'modify notify desc', 'GLOBAL_'.$stuTableSoleName.'MODIFY_NOTIFY_SUBJECT' => 'Global '.$tableSoleName.' modify notify subject', 'GLOBAL_'.$stuTableSoleName.'BROKEN_NOTIFY' => 'Global '.$tableSoleName.' broken notify', 'GLOBAL_'.$stuTableSoleName.'BROKEN_NOTIFY_CAPTION' => 'Global '.$tableSoleName.'broken notify caption', 'GLOBAL_'.$stuTableSoleName.'BROKEN_NOTIFY_DESC' => 'Global '.$tableSoleName.'broken notify desc', 'GLOBAL_'.$stuTableSoleName.'BROKEN_NOTIFY_SUBJECT' => 'Global '.$tableSoleName.'broken notify subject', 'GLOBAL_'.$stuTableSoleName.'SUBMIT_NOTIFY' => 'Global '.$tableSoleName.' submit notify', 'GLOBAL_'.$stuTableSoleName.'SUBMIT_NOTIFY_CAPTION' => 'Global '.$tableSoleName.' submit notify caption', 'GLOBAL_'.$stuTableSoleName.'SUBMIT_NOTIFY_DESC' => 'Global '.$tableSoleName.'submit notify desc', 'GLOBAL_'.$stuTableSoleName.'SUBMIT_NOTIFY_SUBJECT' => 'Global '.$tableSoleName.'submit notify subject', 'GLOBAL_NEW'.$stuTableSoleName.'_NOTIFY' => 'Global new'.$tableSoleName.' notify', 'GLOBAL_NEW'.$stuTableSoleName.'_NOTIFY_CAPTION' => 'Global new'.$tableSoleName.' notify caption', 'GLOBAL_NEW'.$stuTableSoleName.'_NOTIFY_DESC' => 'Global new'.$tableSoleName.' notify desc', 'GLOBAL_NEW'.$stuTableSoleName.'_NOTIFY_SUBJECT' => 'Global new'.$tableSoleName.' notify subject', 'CATEGORY_'.$stuTableSoleName.'SUBMIT_NOTIFY' => 'Category '.$tableSoleName.'submit notify', 'CATEGORY_'.$stuTableSoleName.'SUBMIT_NOTIFY_CAPTION' => 'Category '.$tableSoleName.' submit notify caption', 'CATEGORY_'.$stuTableSoleName.'SUBMIT_NOTIFY_DESC' => 'Category '.$tableSoleName.' submit notify desc', 'CATEGORY_'.$stuTableSoleName.'SUBMIT_NOTIFY_SUBJECT' => 'Category '.$tableSoleName.' submit notify subject', 'CATEGORY_NEW'.$stuTableSoleName.'_NOTIFY' => 'Category new'.$tableSoleName.' notify', 'CATEGORY_NEW'.$stuTableSoleName.'_NOTIFY_CAPTION' => 'Category new'.$tableSoleName.' notify caption', 'CATEGORY_NEW'.$stuTableSoleName.'_NOTIFY_DESC' => 'Category new'.$tableSoleName.' notify desc', 'CATEGORY_NEW'.$stuTableSoleName.'_NOTIFY_SUBJECT' => 'Category new'.$tableSoleName.' notify subject', $stuTableSoleName.'_APPROVE_NOTIFY' => $ucfTableSoleName.' approve notify', $stuTableSoleName.'_APPROVE_NOTIFY_CAPTION' => $ucfTableSoleName.' approve notify caption', $stuTableSoleName.'_APPROVE_NOTIFY_DESC' => $ucfTableSoleName.' approve notify desc', $stuTableSoleName.'_APPROVE_NOTIFY_SUBJECT' => $ucfTableSoleName.' approve notify subject',);
321 321
         foreach ($getDefinesNotif as $defn => $descn) {
322 322
             $ret .= $df->getDefine($language, $defn, $descn);
323 323
         }
Please login to merge, or discard this patch.
Doc Comments   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -55,9 +55,9 @@  discard block
 block discarded – undo
55 55
     /**
56 56
      *  @public function write
57 57
      *
58
-     * @param $module
58
+     * @param string $module
59 59
      * @param $table
60
-     * @param $filename
60
+     * @param string $filename
61 61
      *
62 62
      * @return string
63 63
      */
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     /**
72 72
      * @private function getLanguageMain
73 73
      *
74
-     * @param $language
74
+     * @param string $language
75 75
      * @param $module
76 76
      *
77 77
      * @return string
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      * @private function getLanguageMenu
91 91
      *
92 92
      * @param $module
93
-     * @param $language
93
+     * @param string $language
94 94
      *
95 95
      * @return string
96 96
      */
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
     /**
122 122
     *  @private function getLanguageAdmin
123
-    *  @param $language
123
+    *  @param string $language
124 124
      *
125 125
      * @return string
126 126
      */
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 
137 137
     /**
138 138
     *  @private function getLanguageSubmenu
139
-    *  @param $language
139
+    *  @param string $language
140 140
     *  @param array $tables
141 141
      *
142 142
      * @return string
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 
166 166
     /**
167 167
     *  @private function getLanguageBlocks
168
-    *  @param $language
168
+    *  @param string $language
169 169
     *  @param array $tables
170 170
      *
171 171
      * @return string
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 
209 209
     /**
210 210
     *  @private function getLanguageUser
211
-    *  @param $language
211
+    *  @param string $language
212 212
      *
213 213
      * @return string
214 214
      */
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
 
225 225
     /**
226 226
     *  @private function getLanguageConfig
227
-    *  @param $language
227
+    *  @param string $language
228 228
     *  @param $table
229 229
      *
230 230
      * @return string
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 
281 281
     /**
282 282
     *  @private function getLanguageNotifications
283
-    *  @param $language
283
+    *  @param string $language
284 284
     *  @param mixed $tableSoleName
285 285
      *
286 286
      * @return string
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
 
303 303
     /**
304 304
     *  @private function getLanguagePermissionsGroups
305
-    *  @param $language
305
+    *  @param string $language
306 306
      *
307 307
      * @return string
308 308
      */
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
     /**
335 335
     *  @public function render
336 336
     *  @param null
337
-     * @return bool|string
337
+     * @return null|string
338 338
      */
339 339
     public function render()
340 340
     {
Please login to merge, or discard this patch.
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
 class LanguageModinfo extends TDMCreateFile
29 29
 {
30 30
     /**
31
-    *  @public function constructor
32
-    *  @param null
33
-    */
31
+     *  @public function constructor
32
+     *  @param null
33
+     */
34 34
 
35 35
     public function __construct()
36 36
     {
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-    *  @static function getInstance
42
-    *  @param null
41
+     *  @static function getInstance
42
+     *  @param null
43 43
      * @return LanguageModinfo
44 44
      */
45 45
     public static function getInstance()
@@ -119,8 +119,8 @@  discard block
 block discarded – undo
119 119
     }
120 120
 
121 121
     /**
122
-    *  @private function getLanguageAdmin
123
-    *  @param $language
122
+     *  @private function getLanguageAdmin
123
+     *  @param $language
124 124
      *
125 125
      * @return string
126 126
      */
@@ -135,9 +135,9 @@  discard block
 block discarded – undo
135 135
     }
136 136
 
137 137
     /**
138
-    *  @private function getLanguageSubmenu
139
-    *  @param $language
140
-    *  @param array $tables
138
+     *  @private function getLanguageSubmenu
139
+     *  @param $language
140
+     *  @param array $tables
141 141
      *
142 142
      * @return string
143 143
      */
@@ -164,9 +164,9 @@  discard block
 block discarded – undo
164 164
     }
165 165
 
166 166
     /**
167
-    *  @private function getLanguageBlocks
168
-    *  @param $language
169
-    *  @param array $tables
167
+     *  @private function getLanguageBlocks
168
+     *  @param $language
169
+     *  @param array $tables
170 170
      *
171 171
      * @return string
172 172
      */
@@ -207,8 +207,8 @@  discard block
 block discarded – undo
207 207
     }
208 208
 
209 209
     /**
210
-    *  @private function getLanguageUser
211
-    *  @param $language
210
+     *  @private function getLanguageUser
211
+     *  @param $language
212 212
      *
213 213
      * @return string
214 214
      */
@@ -223,9 +223,9 @@  discard block
 block discarded – undo
223 223
     }
224 224
 
225 225
     /**
226
-    *  @private function getLanguageConfig
227
-    *  @param $language
228
-    *  @param $table
226
+     *  @private function getLanguageConfig
227
+     *  @param $language
228
+     *  @param $table
229 229
      *
230 230
      * @return string
231 231
      */
@@ -279,9 +279,9 @@  discard block
 block discarded – undo
279 279
     }
280 280
 
281 281
     /**
282
-    *  @private function getLanguageNotifications
283
-    *  @param $language
284
-    *  @param mixed $tableSoleName
282
+     *  @private function getLanguageNotifications
283
+     *  @param $language
284
+     *  @param mixed $tableSoleName
285 285
      *
286 286
      * @return string
287 287
      */
@@ -301,8 +301,8 @@  discard block
 block discarded – undo
301 301
     }
302 302
 
303 303
     /**
304
-    *  @private function getLanguagePermissionsGroups
305
-    *  @param $language
304
+     *  @private function getLanguagePermissionsGroups
305
+     *  @param $language
306 306
      *
307 307
      * @return string
308 308
      */
@@ -319,8 +319,8 @@  discard block
 block discarded – undo
319 319
     }
320 320
 
321 321
     /**
322
-    *  @private function getFooter
323
-    *  @param null
322
+     *  @private function getFooter
323
+     *  @param null
324 324
      * @return string
325 325
      */
326 326
     private function getLanguageFooter()
@@ -332,8 +332,8 @@  discard block
 block discarded – undo
332 332
     }
333 333
 
334 334
     /**
335
-    *  @public function render
336
-    *  @param null
335
+     *  @public function render
336
+     *  @param null
337 337
      * @return bool|string
338 338
      */
339 339
     public function render()
Please login to merge, or discard this patch.