Completed
Pull Request — master (#131)
by Goffy
03:16
created
class/files/sql/SqlFile.php 1 patch
Doc Comments   +10 added lines, -9 removed lines patch added patch discarded remove patch
@@ -57,8 +57,8 @@  discard block
 block discarded – undo
57 57
     /**
58 58
      *  @public function write
59 59
      *
60
-     *  @param $module
61
-     *  @param $filename
60
+     *  @param string $module
61
+     *  @param string $filename
62 62
      */
63 63
     public function write($module, $filename)
64 64
     {
@@ -69,8 +69,8 @@  discard block
 block discarded – undo
69 69
     /**
70 70
      *  @private function getHeaderSqlComments
71 71
      *
72
-     *  @param $moduleName
73
-     * @param $moduleName
72
+     *  @param string $moduleName
73
+     * @param string $moduleName
74 74
      *
75 75
      * @return string
76 76
      */
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     /**
142 142
      *  @private function getDatabaseFields
143 143
      *
144
-     *  @param $moduleDirname
144
+     *  @param string $moduleDirname
145 145
      *  @param $tableName
146 146
      *  @param $tableAutoincrement
147 147
      *  @param $fieldsNumb
@@ -336,7 +336,7 @@  discard block
 block discarded – undo
336 336
      *  @param $fieldAttribute
337 337
      *  @param $fieldNull
338 338
      *  @param $fieldDefault
339
-     *  @param $autoincrement
339
+     *  @param string $autoincrement
340 340
      *
341 341
      *  @return string
342 342
      */
@@ -362,6 +362,7 @@  discard block
 block discarded – undo
362 362
     /**
363 363
      *  @private function getKey
364 364
      *
365
+     *  @param integer $key
365 366
      *  @return string
366 367
      */
367 368
     private function getKey($key, $fieldName)
@@ -390,8 +391,8 @@  discard block
 block discarded – undo
390 391
     /**
391 392
      *  @private function getComma
392 393
      *
393
-     *  @param $row
394
-     *  @param $comma
394
+     *  @param boolean $row
395
+     *  @param string $comma
395 396
      *
396 397
      *  @return string
397 398
      */
@@ -427,7 +428,7 @@  discard block
 block discarded – undo
427 428
      *
428 429
      *  @param null
429 430
      *
430
-     *  @return bool|string
431
+     *  @return null|string
431 432
      */
432 433
     public function render()
433 434
     {
Please login to merge, or discard this patch.