Completed
Push — master ( 786cc1...c0cc91 )
by Morris
02:04
created
lib/Db/DepositionFilesMapper.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -74,6 +74,10 @@
 block discarded – undo
74 74
 
75 75
 
76 76
 	// force will delete whichever type of the entry. if not, only delete sandbox entry
77
+
78
+	/**
79
+	 * @param boolean $force
80
+	 */
77 81
 	public function deleteFile(DepositionFiles $entry, $force) {
78 82
 		try {
79 83
 			$sql = sprintf(
Please login to merge, or discard this patch.
lib/Model/iError.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@
 block discarded – undo
35 35
 	function __construct() {
36 36
 	}
37 37
 
38
+	/**
39
+	 * @param string $message
40
+	 */
38 41
 	public function setMessage($message) {
39 42
 		array_push($this->messages, $message);
40 43
 
Please login to merge, or discard this patch.
lib/Service/ApiService.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -62,6 +62,9 @@  discard block
 block discarded – undo
62 62
 	}
63 63
 
64 64
 
65
+	/**
66
+	 * @param boolean $production
67
+	 */
65 68
 	public function init($production, &$iError = null) {
66 69
 
67 70
 		if ($iError === null) {
@@ -102,6 +105,9 @@  discard block
 block discarded – undo
102 105
 	}
103 106
 
104 107
 
108
+	/**
109
+	 * @param string $path
110
+	 */
105 111
 	private function generateUrl($path) {
106 112
 
107 113
 		if (!$this->configured()) {
@@ -236,6 +242,9 @@  discard block
 block discarded – undo
236 242
 	}
237 243
 
238 244
 
245
+	/**
246
+	 * @param false|string $url
247
+	 */
239 248
 	public static function curlIt($url, $data) {
240 249
 
241 250
 		$curl = curl_init($url);
Please login to merge, or discard this patch.
lib/Service/FileService.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -44,9 +44,7 @@
 block discarded – undo
44 44
 	/**
45 45
 	 * get files from a userid+fileid
46 46
 	 *
47
-	 * @param number $userId
48 47
 	 * @param number $fileId
49
-	 * @param array $options
50 48
 	 *
51 49
 	 * @return array
52 50
 	 */
Please login to merge, or discard this patch.