Completed
Pull Request — master (#5)
by Michael
01:40
created
class/Admin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -334,7 +334,7 @@
 block discarded – undo
334 334
      * Fetch content of comma separated text file
335 335
      * will attempt to use the fopen method first, then curl, then socket
336 336
      * @param string $url
337
-     * @param array  $methods
337
+     * @param string[]  $methods
338 338
      * @returns string
339 339
      * @return bool|false|string
340 340
      * @return bool|false|string
Please login to merge, or discard this patch.
class/DoSync.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -89,8 +89,8 @@  discard block
 block discarded – undo
89 89
      * - Remove user image dir in uploads.
90 90
      * @param int         $userid
91 91
      * @param string|bool $directory
92
-     * @param bool|int    $empty
93
-     * @return true
92
+     * @param boolean    $empty
93
+     * @return boolean|null
94 94
      */
95 95
     public function smallworld_remDir($userid, $directory, $empty = false)
96 96
     {
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
      * SmallworldDeleteDirectory function
132 132
      * - Delete images from users on delete
133 133
      * @param int $userid
134
-     * @return true
134
+     * @return boolean
135 135
      */
136 136
     public function SmallworldDeleteDirectory($userid)
137 137
     {
Please login to merge, or discard this patch.
class/Common/DirectoryChecker.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      * @param int $mode
42 42
      * @param     $redirectFile
43 43
      *
44
-     * @return bool|string
44
+     * @return false|string
45 45
      */
46 46
     public static function getDirectoryStatus($path, $mode = 0777, $redirectFile = null)
47 47
     {
Please login to merge, or discard this patch.
class/SwUploadHandler.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     }
48 48
 
49 49
     /**
50
-     * @param $file_name
50
+     * @param string $file_name
51 51
      * @return null|\stdClass
52 52
      */
53 53
     private function get_file_object($file_name)
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     }
66 66
 
67 67
     /**
68
-     * @param $file_name
68
+     * @param string $file_name
69 69
      * @return bool
70 70
      */
71 71
     private function create_thumbnail($file_name)
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
      * @param $size
127 127
      * @param $type
128 128
      * @param $error
129
-     * @return stdClass
129
+     * @return \stdClass
130 130
      */
131 131
     private function handle_file_upload($uploaded_file, $name, $size, $type, $error)
132 132
     {
Please login to merge, or discard this patch.
class/Common/FileChecker.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      * @param string      $file_path
41 41
      * @param string|null $original_file_path
42 42
      * @param string      $redirectFile
43
-     * @return bool|string
43
+     * @return false|string
44 44
      */
45 45
     public static function getFileStatus($file_path, $original_file_path, $redirectFile)
46 46
     {
@@ -97,8 +97,8 @@  discard block
 block discarded – undo
97 97
     }
98 98
 
99 99
     /**
100
-     * @param   $file1_path
101
-     * @param   $file2_path
100
+     * @param   string $file1_path
101
+     * @param   string $file2_path
102 102
      *
103 103
      * @return bool
104 104
      */
Please login to merge, or discard this patch.
class/Mail.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     /**
45 45
      * @param             $fromUserID
46 46
      * @param             $toUserID
47
-     * @param             $event
47
+     * @param             string $event
48 48
      * @param null|string $link
49 49
      * @throws \phpmailerException
50 50
      */
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 
211 211
     /**
212 212
      * @param $msgid
213
-     * @return mixed
213
+     * @return string
214 214
      */
215 215
     public function getOwnerUpdateFromMsgID($msgid)
216 216
     {
Please login to merge, or discard this patch.
class/SwDatabase.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 
153 153
     /**
154 154
      * saveImage function
155
-     * @param $values
155
+     * @param string $values
156 156
      */
157 157
     public function saveImage($values)
158 158
     {
@@ -452,7 +452,7 @@  discard block
 block discarded – undo
452 452
      * deleteWallMsg function
453 453
      * @param int $id
454 454
      * @param int $smallworld_msg_id
455
-     * @return true
455
+     * @return boolean
456 456
      */
457 457
     public function deleteWallMsg($id, $smallworld_msg_id)
458 458
     {
@@ -472,7 +472,7 @@  discard block
 block discarded – undo
472 472
      * deleteWallComment function
473 473
      * - Delete Comments
474 474
      * @param int $smallworld_com_id
475
-     * @return true
475
+     * @return boolean
476 476
      */
477 477
     public function deleteWallComment($smallworld_com_id)
478 478
     {
@@ -549,7 +549,7 @@  discard block
 block discarded – undo
549 549
      * SmallworldDeleteDirectory function
550 550
      * - Delete images from users on delete
551 551
      * @param int $userid
552
-     * @return true
552
+     * @return boolean
553 553
      */
554 554
     public function SmallworldDeleteDirectory($userid)
555 555
     {
@@ -580,8 +580,8 @@  discard block
 block discarded – undo
580 580
      * - Remove user image dir in uploads.
581 581
      * @param int         $userid
582 582
      * @param string|bool $directory
583
-     * @param bool|int    $empty
584
-     * @return true
583
+     * @param boolean    $empty
584
+     * @return boolean|null
585 585
      */
586 586
     public function smallworld_remDir($userid, $directory, $empty = false)
587 587
     {
@@ -622,7 +622,7 @@  discard block
 block discarded – undo
622 622
      * @param int id ($userid)
623 623
      * @param string posts (serialized values)
624 624
      * @param mixed $id
625
-     * @param mixed $posts
625
+     * @param string $posts
626 626
      */
627 627
     public function saveSettings($id, $posts)
628 628
     {
Please login to merge, or discard this patch.
class/UploadHandler.php 1 patch
Doc Comments   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
     }
235 235
 
236 236
     /**
237
-     * @param $file
237
+     * @param \stdClass $file
238 238
      */
239 239
     protected function set_file_delete_properties($file)
240 240
     {
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
 
254 254
     /**
255 255
      * @param $size
256
-     * @return float|int
256
+     * @return null|string
257 257
      */
258 258
     protected function fix_integer_overflow($size)
259 259
     {
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
     }
291 291
 
292 292
     /**
293
-     * @param $file_name
293
+     * @param string $file_name
294 294
      * @return null|\stdClass
295 295
      */
296 296
     protected function get_file_object($file_name)
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
     }
339 339
 
340 340
     /**
341
-     * @param $file_name
341
+     * @param string $file_name
342 342
      * @param $version
343 343
      * @param $options
344 344
      * @return bool
@@ -414,7 +414,7 @@  discard block
 block discarded – undo
414 414
     }
415 415
 
416 416
     /**
417
-     * @param $val
417
+     * @param string $val
418 418
      * @return float|int
419 419
      */
420 420
     public function get_config_bytes($val)
@@ -437,7 +437,7 @@  discard block
 block discarded – undo
437 437
 
438 438
     /**
439 439
      * @param $uploaded_file
440
-     * @param $file
440
+     * @param \stdClass $file
441 441
      * @param $error
442 442
      * @param $index
443 443
      * @return bool
@@ -530,7 +530,7 @@  discard block
 block discarded – undo
530 530
     }
531 531
 
532 532
     /**
533
-     * @param $name
533
+     * @param string $name
534 534
      * @param $type
535 535
      * @param $index
536 536
      * @param $content_range
@@ -558,7 +558,7 @@  discard block
 block discarded – undo
558 558
      * @param $type
559 559
      * @param $index
560 560
      * @param $content_range
561
-     * @return mixed|string
561
+     * @return string
562 562
      */
563 563
     protected function trim_file_name($name, $type, $index, $content_range)
564 564
     {
@@ -591,7 +591,7 @@  discard block
 block discarded – undo
591 591
     }
592 592
 
593 593
     /**
594
-     * @param $file
594
+     * @param \stdClass $file
595 595
      * @param $index
596 596
      */
597 597
     protected function handle_form_data($file, $index)
@@ -600,7 +600,7 @@  discard block
 block discarded – undo
600 600
     }
601 601
 
602 602
     /**
603
-     * @param $file_path
603
+     * @param string $file_path
604 604
      * @return bool
605 605
      */
606 606
     protected function orient_image($file_path)
@@ -734,7 +734,7 @@  discard block
 block discarded – undo
734 734
     }
735 735
 
736 736
     /**
737
-     * @param $file_path
737
+     * @param string $file_path
738 738
      * @return false|int
739 739
      */
740 740
     protected function readfile($file_path)
@@ -743,7 +743,7 @@  discard block
 block discarded – undo
743 743
     }
744 744
 
745 745
     /**
746
-     * @param $str
746
+     * @param string $str
747 747
      */
748 748
     protected function body($str)
749 749
     {
@@ -751,7 +751,7 @@  discard block
 block discarded – undo
751 751
     }
752 752
 
753 753
     /**
754
-     * @param $str
754
+     * @param string $str
755 755
      */
756 756
     protected function header($str)
757 757
     {
@@ -802,7 +802,7 @@  discard block
 block discarded – undo
802 802
     }
803 803
 
804 804
     /**
805
-     * @param $file_path
805
+     * @param string $file_path
806 806
      * @return string
807 807
      */
808 808
     protected function get_file_type($file_path)
Please login to merge, or discard this patch.
include/functions.php 1 patch
Doc Comments   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 // If array check for magicQuotes.
50 50
 // Pass string to Smallworld_cleanup_string
51 51
 /**
52
- * @param $text
52
+ * @param string $text
53 53
  * @return array|mixed
54 54
  */
55 55
 function Smallworld_cleanup($text)
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 }
143 143
 
144 144
 /**
145
- * @param $folderUrl
145
+ * @param string $folderUrl
146 146
  */
147 147
 function Smallworld_CreateIndexFiles($folderUrl)
148 148
 {
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
 // Return only url/link
292 292
 // If url is image link return <img>
293 293
 /**
294
- * @param $text
294
+ * @param string $text
295 295
  * @param $uid
296 296
  * @return string
297 297
  */
@@ -966,7 +966,7 @@  discard block
 block discarded – undo
966 966
 /**
967 967
  * @param $width
968 968
  * @param $height
969
- * @param $target
969
+ * @param integer $target
970 970
  * @return string
971 971
  */
972 972
 function smallworld_imageResize($width, $height, $target)
@@ -993,7 +993,7 @@  discard block
 block discarded – undo
993 993
  * will attempt to use the getimagesiz method first, then curl
994 994
  * @param int $w
995 995
  * @param int $h
996
- * @param url $url
996
+ * @param string $url
997 997
  * @returns array
998 998
  * @return array|false|string[]
999 999
  * @return array|false|string[]
@@ -1103,7 +1103,7 @@  discard block
 block discarded – undo
1103 1103
 /**
1104 1104
  * @Get string and shorten so contains only ? chars
1105 1105
  * @param $text
1106
- * @param $chars
1106
+ * @param integer $chars
1107 1107
  * @return string
1108 1108
  */
1109 1109
 function smallworld_shortenText($text, $chars)
@@ -1118,8 +1118,8 @@  discard block
 block discarded – undo
1118 1118
 
1119 1119
 /**
1120 1120
  * @Get languagefile if constants are not defined
1121
- * @param $def
1122
- * @param $file
1121
+ * @param string $def
1122
+ * @param string $file
1123 1123
  * return file include
1124 1124
  */
1125 1125
 function smallworld_isDefinedLanguage($def, $file)
@@ -1170,7 +1170,7 @@  discard block
 block discarded – undo
1170 1170
 }
1171 1171
 
1172 1172
 /**
1173
- * @return array of groups
1173
+ * @return string[] of groups
1174 1174
  * return array
1175 1175
  */
1176 1176
 function smallworld_xv_getGroupd()
Please login to merge, or discard this patch.