Completed
Pull Request — master (#5)
by Michael
01:40
created
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.
stats.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -20,8 +20,6 @@
 block discarded – undo
20 20
  * @author       Michael Albertsen (http://culex.dk) <[email protected]>
21 21
  */
22 22
 
23
-use XoopsModules\Smallworld;
24
-
25 23
 require_once __DIR__ . '/header.php';
26 24
 
27 25
 require_once dirname(dirname(__DIR__)) . '/mainfile.php';
Please login to merge, or discard this patch.