Completed
Branch master (5f2659)
by Sander
01:54
created
js/tinymce/plugins/jbimages/ci/system/core/URI.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -496,7 +496,7 @@
 block discarded – undo
496 496
 	 *
497 497
 	 * @access	public
498 498
 	 * @param	array	an associative array of key/values
499
-	 * @return	array
499
+	 * @return	string
500 500
 	 */
501 501
 	function assoc_to_uri($array)
502 502
 	{
Please login to merge, or discard this patch.
js/tinymce/plugins/jbimages/ci/system/libraries/Upload.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -385,6 +385,8 @@  discard block
 block discarded – undo
385 385
 	 *
386 386
 	 * @param	string
387 387
 	 * @param	string
388
+	 * @param string $path
389
+	 * @param string $filename
388 390
 	 * @return	string
389 391
 	 */
390 392
 	public function set_filename($path, $filename)
@@ -732,6 +734,7 @@  discard block
 block discarded – undo
732 734
 	 * Extract the file extension
733 735
 	 *
734 736
 	 * @param	string
737
+	 * @param string $filename
735 738
 	 * @return	string
736 739
 	 */
737 740
 	public function get_extension($filename)
@@ -746,6 +749,7 @@  discard block
 block discarded – undo
746 749
 	 * Clean the file name for security
747 750
 	 *
748 751
 	 * @param	string
752
+	 * @param string $filename
749 753
 	 * @return	string
750 754
 	 */
751 755
 	public function clean_file_name($filename)
@@ -790,6 +794,8 @@  discard block
 block discarded – undo
790 794
 	 * Limit the File Name Length
791 795
 	 *
792 796
 	 * @param	string
797
+	 * @param string $filename
798
+	 * @param integer $length
793 799
 	 * @return	string
794 800
 	 */
795 801
 	public function limit_filename_length($filename, $length)
@@ -889,6 +895,7 @@  discard block
 block discarded – undo
889 895
 	 * Set an error message
890 896
 	 *
891 897
 	 * @param	string
898
+	 * @param string $msg
892 899
 	 * @return	void
893 900
 	 */
894 901
 	public function set_error($msg)
@@ -942,6 +949,7 @@  discard block
 block discarded – undo
942 949
 	 * the "allowed types" set by the developer
943 950
 	 *
944 951
 	 * @param	string
952
+	 * @param string $mime
945 953
 	 * @return	string
946 954
 	 */
947 955
 	public function mimes_types($mime)
Please login to merge, or discard this patch.
lib/backend.php 2 patches
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
 	/**
32 32
 	 * @param $haystack
33
-	 * @param $needle
33
+	 * @param string $needle
34 34
 	 * @return bool
35 35
 	 */
36 36
 	public function startsWith($haystack, $needle) {
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
 	}
39 39
 
40 40
 	/**
41
-	 * @param $string
42
-	 * @param $test
41
+	 * @param string $string
42
+	 * @param string $test
43 43
 	 * @return bool
44 44
 	 */
45 45
 	public function endsWith($string, $test) {
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
 	/**
53 53
 	 * @param $folder
54
-	 * @param $file
54
+	 * @param string $file
55 55
 	 */
56 56
 	public function checkEvernote($folder, $file) {
57 57
 		$html = "";
@@ -101,8 +101,8 @@  discard block
 block discarded – undo
101 101
 	}
102 102
 
103 103
 	/**
104
-	 * @param $filetime DateTime
105
-	 * @param $now DateTime
104
+	 * @param DateTime $filetime DateTime
105
+	 * @param DateTime $now DateTime
106 106
 	 * @param $l IL10N
107 107
 	 * @return mixed|string
108 108
 	 */
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 
170 170
 	/**
171 171
 	 * @param $FOLDER
172
-	 * @param $showdel
172
+	 * @param boolean $showdel
173 173
 	 * @return array
174 174
 	 */
175 175
 	public function getListing($FOLDER, $showdel) {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 
7 7
 use DateTime;
8 8
 use DOMDocument;
9
-use OCA\Admin_Audit\Actions\UserManagement;
10 9
 use OCP\IConfig;
11 10
 use OCP\IL10N;
12 11
 
Please login to merge, or discard this patch.