Completed
Pull Request — master (#134)
by Michael
04:22 queued 12s
created
class/files/preloads/PreloadsCore.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -29,9 +29,9 @@  discard block
 block discarded – undo
29 29
 class PreloadsCore extends TDMCreateFile
30 30
 {
31 31
     /**
32
-    *  @public function constructor
33
-    *  @param null
34
-    */
32
+     *  @public function constructor
33
+     *  @param null
34
+     */
35 35
 
36 36
     public function __construct()
37 37
     {
@@ -40,8 +40,8 @@  discard block
 block discarded – undo
40 40
     }
41 41
 
42 42
     /**
43
-    *  @static function getInstance
44
-    *  @param null
43
+     *  @static function getInstance
44
+     *  @param null
45 45
      * @return PreloadsCore
46 46
      */
47 47
     public static function getInstance()
@@ -55,9 +55,9 @@  discard block
 block discarded – undo
55 55
     }
56 56
 
57 57
     /**
58
-    *  @public function write
59
-    *  @param $module
60
-    *  @param $filename
58
+     *  @public function write
59
+     *  @param $module
60
+     *  @param $filename
61 61
      */
62 62
     public function write($module, $filename)
63 63
     {
@@ -66,10 +66,10 @@  discard block
 block discarded – undo
66 66
     }
67 67
 
68 68
     /**
69
-    *  @public function render
70
-    *  @param null
71
-    *  @return bool|string
72
-    */
69
+     *  @public function render
70
+     *  @param null
71
+     *  @return bool|string
72
+     */
73 73
     public function render()
74 74
     {
75 75
         $module = $this->getModule();
Please login to merge, or discard this patch.
class/files/user/UserObjects.php 1 patch
Indentation   +100 added lines, -100 removed lines patch added patch discarded remove patch
@@ -29,9 +29,9 @@  discard block
 block discarded – undo
29 29
 class UserObjects extends TDMCreateFile
30 30
 {
31 31
     /**
32
-    *  @public function constructor
33
-    *  @param null
34
-    */
32
+     *  @public function constructor
33
+     *  @param null
34
+     */
35 35
 
36 36
     public function __construct()
37 37
     {
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
     }
40 40
 
41 41
     /**
42
-    *  @static function getInstance
43
-    *  @param null
42
+     *  @static function getInstance
43
+     *  @param null
44 44
      * @return UserObjects
45 45
      */
46 46
     public static function getInstance()
@@ -54,11 +54,11 @@  discard block
 block discarded – undo
54 54
     }
55 55
 
56 56
     /**
57
-    *  @public function getUserHeaderTpl
58
-    *  @param string $moduleDirname
59
-    *  @param string $tableName
60
-    *  @return string
61
-    */
57
+     *  @public function getUserHeaderTpl
58
+     *  @param string $moduleDirname
59
+     *  @param string $tableName
60
+     *  @return string
61
+     */
62 62
     public function getUserHeaderTpl($moduleDirname, $tableName)
63 63
     {
64 64
         $ret = <<<EOT
@@ -71,10 +71,10 @@  discard block
 block discarded – undo
71 71
     }
72 72
 
73 73
     /**
74
-    *  @public function getUserIndex
75
-    *  @param string $moduleDirname
76
-    *  @return string
77
-    */
74
+     *  @public function getUserIndex
75
+     *  @param string $moduleDirname
76
+     *  @return string
77
+     */
78 78
     public function getUserIndex($moduleDirname)
79 79
     {
80 80
         $ret = <<<EOT
@@ -87,8 +87,8 @@  discard block
 block discarded – undo
87 87
     }
88 88
 
89 89
     /**
90
-    *  @public function getUserFooter
91
-    *  @param null
90
+     *  @public function getUserFooter
91
+     *  @param null
92 92
      * @return string
93 93
      */
94 94
     public function getUserFooter()
@@ -101,11 +101,11 @@  discard block
 block discarded – undo
101 101
     }
102 102
 
103 103
     /**
104
-    *  @public function getSimpleSetVar
105
-    *  @param string $tableName
106
-    *  @param string $fieldName
107
-    *  @return string
108
-    */
104
+     *  @public function getSimpleSetVar
105
+     *  @param string $tableName
106
+     *  @param string $fieldName
107
+     *  @return string
108
+     */
109 109
     public function getSimpleSetVar($tableName, $fieldName)
110 110
     {
111 111
         $ret = <<<EOT
@@ -117,11 +117,11 @@  discard block
 block discarded – undo
117 117
     }
118 118
 
119 119
     /**
120
-    *  @public function getTextDateSelectSetVar
121
-    *  @param string $tableName
122
-    *  @param string $fieldName
123
-    *  @return string
124
-    */
120
+     *  @public function getTextDateSelectSetVar
121
+     *  @param string $tableName
122
+     *  @param string $fieldName
123
+     *  @return string
124
+     */
125 125
     public function getTextDateSelectSetVar($tableName, $fieldName)
126 126
     {
127 127
         $ret = <<<EOT
@@ -133,11 +133,11 @@  discard block
 block discarded – undo
133 133
     }
134 134
 
135 135
     /**
136
-    *  @public function getCheckBoxOrRadioYNSetVar
137
-    *  @param string $tableName
138
-    *  @param string $fieldName
139
-    *  @return string
140
-    */
136
+     *  @public function getCheckBoxOrRadioYNSetVar
137
+     *  @param string $tableName
138
+     *  @param string $fieldName
139
+     *  @return string
140
+     */
141 141
     public function getCheckBoxOrRadioYNSetVar($tableName, $fieldName)
142 142
     {
143 143
         $ret = <<<EOT
@@ -149,12 +149,12 @@  discard block
 block discarded – undo
149 149
     }
150 150
 
151 151
     /**
152
-    *  @public function getUrlFileSetVar
153
-    *  @param $moduleDirname
154
-    *  @param $tableName
155
-    *  @param $fieldName
156
-    *  @return string
157
-    */
152
+     *  @public function getUrlFileSetVar
153
+     *  @param $moduleDirname
154
+     *  @param $tableName
155
+     *  @param $fieldName
156
+     *  @return string
157
+     */
158 158
     public function getUrlFileSetVar($moduleDirname, $tableName, $fieldName)
159 159
     {
160 160
         $stuModuleDirname = strtoupper($moduleDirname);
@@ -181,12 +181,12 @@  discard block
 block discarded – undo
181 181
     }
182 182
 
183 183
     /**
184
-    *  @public function getImageListSetVar
185
-    *  @param string $moduleDirname
186
-    *  @param string $tableName
187
-    *  @param string $fieldName
188
-    *  @return string
189
-    */
184
+     *  @public function getImageListSetVar
185
+     *  @param string $moduleDirname
186
+     *  @param string $tableName
187
+     *  @param string $fieldName
188
+     *  @return string
189
+     */
190 190
     public function getImageListSetVar($moduleDirname, $tableName, $fieldName)
191 191
     {
192 192
         $ret = <<<EOT
@@ -249,12 +249,12 @@  discard block
 block discarded – undo
249 249
     }
250 250
 
251 251
     /**
252
-    *  @public function getUploadFileSetVar
253
-    *  @param string $moduleDirname
254
-    *  @param string $tableName
255
-    *  @param string $fieldName
256
-    *  @return string
257
-    */
252
+     *  @public function getUploadFileSetVar
253
+     *  @param string $moduleDirname
254
+     *  @param string $tableName
255
+     *  @param string $fieldName
256
+     *  @return string
257
+     */
258 258
     public function getUploadFileSetVar($moduleDirname, $tableName, $fieldName)
259 259
     {
260 260
         $stuModuleDirname = strtoupper($moduleDirname);
@@ -347,13 +347,13 @@  discard block
 block discarded – undo
347 347
     }
348 348
 
349 349
     /**
350
-    *  @public function getSimpleGetVar
351
-    *  @param string $lpFieldName
352
-    *  @param string $rpFieldName
353
-    *  @param string $tableName
354
-    *  @param string $fieldName
355
-    *  @return string
356
-    */
350
+     *  @public function getSimpleGetVar
351
+     *  @param string $lpFieldName
352
+     *  @param string $rpFieldName
353
+     *  @param string $tableName
354
+     *  @param string $fieldName
355
+     *  @return string
356
+     */
357 357
     public function getSimpleGetVar($lpFieldName, $rpFieldName, $tableName, $fieldName)
358 358
     {
359 359
         $ret = <<<EOT
@@ -365,15 +365,15 @@  discard block
 block discarded – undo
365 365
     }
366 366
 
367 367
     /**
368
-    *  @public function getTopicGetVar
369
-    *  @param string $lpFieldName
370
-    *  @param string $rpFieldName
371
-    *  @param string $tableName
372
-    *  @param string $tableNameTopic
373
-    *  @param string $fieldNameParent
374
-    *  @param string $fieldNameTopic
375
-    *  @return string
376
-    */
368
+     *  @public function getTopicGetVar
369
+     *  @param string $lpFieldName
370
+     *  @param string $rpFieldName
371
+     *  @param string $tableName
372
+     *  @param string $tableNameTopic
373
+     *  @param string $fieldNameParent
374
+     *  @param string $fieldNameTopic
375
+     *  @return string
376
+     */
377 377
     public function getTopicGetVar($lpFieldName, $rpFieldName, $tableName, $tableNameTopic, $fieldNameParent, $fieldNameTopic)
378 378
     {
379 379
         $ret = <<<EOT
@@ -386,13 +386,13 @@  discard block
 block discarded – undo
386 386
     }
387 387
 
388 388
     /**
389
-    *  @public function getUploadImageGetVar
390
-    *  @param string $lpFieldName
391
-    *  @param string $rpFieldName
392
-    *  @param string $tableName
393
-    *  @param string $fieldName
394
-    *  @return string
395
-    */
389
+     *  @public function getUploadImageGetVar
390
+     *  @param string $lpFieldName
391
+     *  @param string $rpFieldName
392
+     *  @param string $tableName
393
+     *  @param string $fieldName
394
+     *  @return string
395
+     */
396 396
     public function getUploadImageGetVar($lpFieldName, $rpFieldName, $tableName, $fieldName)
397 397
     {
398 398
         $ret = <<<EOT
@@ -406,13 +406,13 @@  discard block
 block discarded – undo
406 406
     }
407 407
 
408 408
     /**
409
-    *  @public function getUrlFileGetVar
410
-    *  @param string $lpFieldName
411
-    *  @param string $rpFieldName
412
-    *  @param string $tableName
413
-    *  @param string $fieldName
414
-    *  @return string
415
-    */
409
+     *  @public function getUrlFileGetVar
410
+     *  @param string $lpFieldName
411
+     *  @param string $rpFieldName
412
+     *  @param string $tableName
413
+     *  @param string $fieldName
414
+     *  @return string
415
+     */
416 416
     public function getUrlFileGetVar($lpFieldName, $rpFieldName, $tableName, $fieldName)
417 417
     {
418 418
         $ret = <<<EOT
@@ -424,13 +424,13 @@  discard block
 block discarded – undo
424 424
     }
425 425
 
426 426
     /**
427
-    *  @public function getTextAreaGetVar
428
-    *  @param string $lpFieldName
429
-    *  @param string $rpFieldName
430
-    *  @param string $tableName
431
-    *  @param string $fieldName
432
-    *  @return string
433
-    */
427
+     *  @public function getTextAreaGetVar
428
+     *  @param string $lpFieldName
429
+     *  @param string $rpFieldName
430
+     *  @param string $tableName
431
+     *  @param string $fieldName
432
+     *  @return string
433
+     */
434 434
     public function getTextAreaGetVar($lpFieldName, $rpFieldName, $tableName, $fieldName)
435 435
     {
436 436
         $ret = <<<EOT
@@ -442,13 +442,13 @@  discard block
 block discarded – undo
442 442
     }
443 443
 
444 444
     /**
445
-    *  @public function getSelectUserGetVar
446
-    *  @param string $lpFieldName
447
-    *  @param string $rpFieldName
448
-    *  @param string $tableName
449
-    *  @param string $fieldName
450
-    *  @return string
451
-    */
445
+     *  @public function getSelectUserGetVar
446
+     *  @param string $lpFieldName
447
+     *  @param string $rpFieldName
448
+     *  @param string $tableName
449
+     *  @param string $fieldName
450
+     *  @return string
451
+     */
452 452
     public function getSelectUserGetVar($lpFieldName, $rpFieldName, $tableName, $fieldName)
453 453
     {
454 454
         $ret = <<<EOT
@@ -460,13 +460,13 @@  discard block
 block discarded – undo
460 460
     }
461 461
 
462 462
     /**
463
-    *  @public function getTextDateSelectGetVar
464
-    *  @param string $lpFieldName
465
-    *  @param string $rpFieldName
466
-    *  @param string $tableName
467
-    *  @param string $fieldName
468
-    *  @return string
469
-    */
463
+     *  @public function getTextDateSelectGetVar
464
+     *  @param string $lpFieldName
465
+     *  @param string $rpFieldName
466
+     *  @param string $tableName
467
+     *  @param string $fieldName
468
+     *  @return string
469
+     */
470 470
     public function getTextDateSelectGetVar($lpFieldName, $rpFieldName, $tableName, $fieldName)
471 471
     {
472 472
         $ret = <<<EOT
Please login to merge, or discard this patch.
class/files/user/UserPrint.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -28,19 +28,19 @@  discard block
 block discarded – undo
28 28
 class UserPrint extends TDMCreateFile
29 29
 {
30 30
     /**
31
-    * @var mixed
32
-    */
31
+     * @var mixed
32
+     */
33 33
     private $uc = null;
34 34
 
35 35
     /**
36
-    * @var string
37
-    */
36
+     * @var string
37
+     */
38 38
     private $xc = null;
39 39
 
40 40
     /**
41
-    *  @public function constructor
42
-    *  @param null
43
-    */
41
+     *  @public function constructor
42
+     *  @param null
43
+     */
44 44
 
45 45
     public function __construct()
46 46
     {
@@ -51,8 +51,8 @@  discard block
 block discarded – undo
51 51
     }
52 52
 
53 53
     /**
54
-    *  @static function getInstance
55
-    *  @param null
54
+     *  @static function getInstance
55
+     *  @param null
56 56
      * @return UserPrint
57 57
      */
58 58
     public static function getInstance()
@@ -66,10 +66,10 @@  discard block
 block discarded – undo
66 66
     }
67 67
 
68 68
     /**
69
-    *  @public function write
70
-    *  @param string $module
71
-    *  @param mixed $table
72
-    *  @param string $filename
69
+     *  @public function write
70
+     *  @param string $module
71
+     *  @param mixed $table
72
+     *  @param string $filename
73 73
      */
74 74
     public function write($module, $table, $filename)
75 75
     {
@@ -79,9 +79,9 @@  discard block
 block discarded – undo
79 79
     }
80 80
 
81 81
     /**
82
-    *  @public function getUserPrint
83
-    *  @param string $moduleDirname
84
-    *  @param string $language
82
+     *  @public function getUserPrint
83
+     *  @param string $moduleDirname
84
+     *  @param string $language
85 85
      *
86 86
      * @return string
87 87
      */
@@ -160,8 +160,8 @@  discard block
 block discarded – undo
160 160
     }
161 161
 
162 162
     /**
163
-    *  @public function render
164
-    *  @param null
163
+     *  @public function render
164
+     *  @param null
165 165
      * @return bool|string
166 166
      */
167 167
     public function render()
Please login to merge, or discard this patch.
class/files/user/UserVisit.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -28,19 +28,19 @@  discard block
 block discarded – undo
28 28
 class UserVisit extends TDMCreateFile
29 29
 {
30 30
     /**
31
-    * @var mixed
32
-    */
31
+     * @var mixed
32
+     */
33 33
     private $uc = null;
34 34
 
35 35
     /**
36
-    * @var string
37
-    */
36
+     * @var string
37
+     */
38 38
     private $xc = null;
39 39
 
40 40
     /**
41
-    *  @public function constructor
42
-    *  @param null
43
-    */
41
+     *  @public function constructor
42
+     *  @param null
43
+     */
44 44
 
45 45
     public function __construct()
46 46
     {
@@ -51,8 +51,8 @@  discard block
 block discarded – undo
51 51
     }
52 52
 
53 53
     /**
54
-    *  @static function getInstance
55
-    *  @param null
54
+     *  @static function getInstance
55
+     *  @param null
56 56
      * @return UserVisit
57 57
      */
58 58
     public static function getInstance()
@@ -66,10 +66,10 @@  discard block
 block discarded – undo
66 66
     }
67 67
 
68 68
     /**
69
-    *  @public function write
70
-    *  @param string $module
71
-    *  @param mixed $table
72
-    *  @param string $filename
69
+     *  @public function write
70
+     *  @param string $module
71
+     *  @param mixed $table
72
+     *  @param string $filename
73 73
      */
74 74
     public function write($module, $table, $filename)
75 75
     {
@@ -151,8 +151,8 @@  discard block
 block discarded – undo
151 151
     }
152 152
 
153 153
     /**
154
-    *  @public function render
155
-    *  @param null
154
+     *  @public function render
155
+     *  @param null
156 156
      * @return bool|string
157 157
      */
158 158
     public function render()
Please login to merge, or discard this patch.
class/files/user/UserBroken.php 1 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/user/UserSubmit.php 1 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 UserSubmit 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 UserSubmit
44 44
      */
45 45
     public static function getInstance()
@@ -53,10 +53,10 @@  discard block
 block discarded – undo
53 53
     }
54 54
 
55 55
     /**
56
-    *  @public function write
57
-    *  @param string $module
58
-    *  @param mixed $table
59
-    *  @param string $filename
56
+     *  @public function write
57
+     *  @param string $module
58
+     *  @param mixed $table
59
+     *  @param string $filename
60 60
      */
61 61
     public function write($module, $table, $filename)
62 62
     {
@@ -125,10 +125,10 @@  discard block
 block discarded – undo
125 125
     }
126 126
 
127 127
     /**
128
-    *  @public function getUserSubmitSave
129
-    *  @param string $moduleDirname
128
+     *  @public function getUserSubmitSave
129
+     *  @param string $moduleDirname
130 130
      * @param        $fields
131
-    *  @param string $tableName
131
+     *  @param string $tableName
132 132
      * @param        $tableSolename
133 133
      * @param        $tableSubmit
134 134
      * @param        $tableAutoincrement
@@ -166,8 +166,8 @@  discard block
 block discarded – undo
166 166
     }
167 167
 
168 168
     /**
169
-    *  @public function getUserSubmitFooter
170
-    *  @param null
169
+     *  @public function getUserSubmitFooter
170
+     *  @param null
171 171
      * @param $moduleDirname
172 172
      * @param $language
173 173
      * @return string
@@ -208,8 +208,8 @@  discard block
 block discarded – undo
208 208
     }
209 209
 
210 210
     /**
211
-    *  @public function render
212
-    *  @param null
211
+     *  @public function render
212
+     *  @param null
213 213
      * @return bool|string
214 214
      */
215 215
     public function render()
Please login to merge, or discard this patch.
class/files/user/UserRate.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -58,10 +58,10 @@  discard block
 block discarded – undo
58 58
     }
59 59
 
60 60
     /**
61
-    *  @public function write
62
-    *  @param string $module
63
-    *  @param mixed $table
64
-    *  @param string $filename
61
+     *  @public function write
62
+     *  @param string $module
63
+     *  @param mixed $table
64
+     *  @param string $filename
65 65
      */
66 66
     public function write($module, $table, $filename)
67 67
     {
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
     }
139 139
 
140 140
     /**
141
-    *  @public function getUserRateSave
141
+     *  @public function getUserRateSave
142 142
      * @param $moduleDirname
143 143
      * @param $fields
144 144
      * @param $tableName
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
     }
175 175
 
176 176
     /**
177
-    *  @public function getUserRateFooter
177
+     *  @public function getUserRateFooter
178 178
      * @param $moduleDirname
179 179
      * @param $language
180 180
      * @return string
@@ -190,8 +190,8 @@  discard block
 block discarded – undo
190 190
     }
191 191
 
192 192
     /**
193
-    *  @public function render
194
-    *  @param null
193
+     *  @public function render
194
+     *  @param null
195 195
      * @return bool|string
196 196
      */
197 197
     public function render()
Please login to merge, or discard this patch.
class/files/user/UserFooter.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
 class UserFooter 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 UserFooter
44 44
      */
45 45
     public static function getInstance()
@@ -53,9 +53,9 @@  discard block
 block discarded – undo
53 53
     }
54 54
 
55 55
     /**
56
-    *  @public function write
57
-    *  @param string $module
58
-    *  @param string $filename
56
+     *  @public function write
57
+     *  @param string $module
58
+     *  @param string $filename
59 59
      */
60 60
     public function write($module, $filename)
61 61
     {
@@ -64,11 +64,11 @@  discard block
 block discarded – undo
64 64
     }
65 65
 
66 66
     /**
67
-    *  @private function getUserFooter
68
-    *  @param $moduleDirname
69
-    *
70
-    *  @return string
71
-    */
67
+     *  @private function getUserFooter
68
+     *  @param $moduleDirname
69
+     *
70
+     *  @return string
71
+     */
72 72
     private function getUserFooter($moduleDirname)
73 73
     {
74 74
         $xc = TDMCreateXoopsCode::getInstance();
@@ -90,8 +90,8 @@  discard block
 block discarded – undo
90 90
     }
91 91
 
92 92
     /**
93
-    *  @public function render
94
-    *  @param null
93
+     *  @public function render
94
+     *  @param null
95 95
      * @return bool|string
96 96
      */
97 97
     public function render()
Please login to merge, or discard this patch.
class/files/user/UserViewTag.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
 class UserViewTag 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
     {
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
     }
40 40
 
41 41
     /**
42
-    *  @static function getInstance
43
-    *  @param null
42
+     *  @static function getInstance
43
+     *  @param null
44 44
      * @return UserViewTag
45 45
      */
46 46
     public static function getInstance()
@@ -54,9 +54,9 @@  discard block
 block discarded – undo
54 54
     }
55 55
 
56 56
     /**
57
-    *  @public function write
58
-    *  @param string $module
59
-    *  @param string $filename
57
+     *  @public function write
58
+     *  @param string $module
59
+     *  @param string $filename
60 60
      */
61 61
     public function write($module, $filename)
62 62
     {
@@ -65,8 +65,8 @@  discard block
 block discarded – undo
65 65
     }
66 66
 
67 67
     /**
68
-    *  @public function getUserViewTag
69
-    *  @param null
68
+     *  @public function getUserViewTag
69
+     *  @param null
70 70
      * @return string
71 71
      *
72 72
      */
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
     }
80 80
 
81 81
     /**
82
-    *  @public function render
83
-    *  @param null
82
+     *  @public function render
83
+     *  @param null
84 84
      * @return bool|string
85 85
      */
86 86
     public function render()
Please login to merge, or discard this patch.