Completed
Push — master ( 65ba54...58bc13 )
by Olivier
11s
created
lib/Controller/CirclesController.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -159,7 +159,6 @@  discard block
 block discarded – undo
159 159
 	 * @NoAdminRequired
160 160
 	 * @NoSubAdminRequired
161 161
 	 *
162
-	 * @param string $name
163 162
 	 *
164 163
 	 * @return DataResponse
165 164
 	 */
@@ -194,7 +193,6 @@  discard block
 block discarded – undo
194 193
 	 * @NoAdminRequired
195 194
 	 * @NoSubAdminRequired
196 195
 	 *
197
-	 * @param string $name
198 196
 	 *
199 197
 	 * @return DataResponse
200 198
 	 */
@@ -233,7 +231,6 @@  discard block
 block discarded – undo
233 231
 	 * @NoAdminRequired
234 232
 	 * @NoSubAdminRequired
235 233
 	 *
236
-	 * @param string $name
237 234
 	 *
238 235
 	 * @return DataResponse
239 236
 	 */
Please login to merge, or discard this patch.
lib/Controller/MembersController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,6 @@
 block discarded – undo
143 143
 	 * @NoAdminRequired
144 144
 	 * @NoSubAdminRequired
145 145
 	 *
146
-	 * @param string $name
147 146
 	 *
148 147
 	 * @return DataResponse
149 148
 	 */
Please login to merge, or discard this patch.
lib/Model/Circle.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -69,6 +69,9 @@  discard block
 block discarded – undo
69 69
 		return $this;
70 70
 	}
71 71
 
72
+	/**
73
+	 * @return string
74
+	 */
72 75
 	public function getName() {
73 76
 		return $this->name;
74 77
 	}
@@ -78,6 +81,9 @@  discard block
 block discarded – undo
78 81
 		return $this->owner;
79 82
 	}
80 83
 
84
+	/**
85
+	 * @param Member $owner
86
+	 */
81 87
 	public function setOwner($owner) {
82 88
 		$this->owner = $owner;
83 89
 	}
@@ -87,6 +93,9 @@  discard block
 block discarded – undo
87 93
 		return $this->user;
88 94
 	}
89 95
 
96
+	/**
97
+	 * @param Member $user
98
+	 */
90 99
 	public function setUser($user) {
91 100
 		$this->user = $user;
92 101
 	}
@@ -116,6 +125,9 @@  discard block
 block discarded – undo
116 125
 		return $this->type;
117 126
 	}
118 127
 
128
+	/**
129
+	 * @param string|null $str
130
+	 */
119 131
 	public function setTypeString($str) {
120 132
 		$this->typeString = $str;
121 133
 
@@ -126,6 +138,9 @@  discard block
 block discarded – undo
126 138
 		return $this->typeString;
127 139
 	}
128 140
 
141
+	/**
142
+	 * @param string|null $str
143
+	 */
129 144
 	public function setTypeLongString($str) {
130 145
 		$this->typeLongString = $str;
131 146
 	}
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
@@ -55,6 +55,9 @@
 block discarded – undo
55 55
 	function __construct() {
56 56
 	}
57 57
 
58
+	/**
59
+	 * @param string $message
60
+	 */
58 61
 	public function setMessage($message) {
59 62
 		$this->message = $message;
60 63
 
Please login to merge, or discard this patch.
lib/Service/CirclesService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -55,6 +55,9 @@
 block discarded – undo
55 55
 	}
56 56
 
57 57
 
58
+	/**
59
+	 * @param string $name
60
+	 */
58 61
 	public function createCircle($type, $name, &$iError = '') {
59 62
 
60 63
 		$iError = new iError();
Please login to merge, or discard this patch.
lib/Service/MembersService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -77,6 +77,9 @@
 block discarded – undo
77 77
 //		return $result;
78 78
 //	}
79 79
 
80
+	/**
81
+	 * @param string $name
82
+	 */
80 83
 	public function addMember($circleid, $name, &$iError = '') {
81 84
 
82 85
 		if ($iError === '' || $iError === null) {
Please login to merge, or discard this patch.
lib/ShareByCircleProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -879,7 +879,7 @@
 block discarded – undo
879 879
 	/**
880 880
 	 * get database row of a give share
881 881
 	 *
882
-	 * @param $id
882
+	 * @param integer $id
883 883
 	 *
884 884
 	 * @return array
885 885
 	 * @throws ShareNotFound
Please login to merge, or discard this patch.