Completed
Push — master ( 697960...dd5cc7 )
by Morris
04:40 queued 02:19
created
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.
lib/Service/ConfigService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
 	 */
74 74
 	public function isCircleAllowed($type) {
75 75
 		if ($this->allowedCircle === -1) {
76
-			$this->allowedCircle = (int) $this->getAppValue(self::CIRCLES_ALLOW_CIRCLES);
76
+			$this->allowedCircle = (int)$this->getAppValue(self::CIRCLES_ALLOW_CIRCLES);
77 77
 		}
78 78
 
79 79
 		return ((int)$type & (int)$this->allowedCircle);
Please login to merge, or discard this patch.
lib/Model/BaseMember.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@
 block discarded – undo
145 145
 	/**
146 146
 	 * @param array $arr
147 147
 	 *
148
-	 * @return null
148
+	 * @return BaseMember
149 149
 	 */
150 150
 	public function fromArray($arr) {
151 151
 		$this->setCircleId($arr['circle_id']);
Please login to merge, or discard this patch.
lib/Db/MembersMapper.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 	/**
83 83
 	 * Generate SQL Request for getMemberFromCircle()
84 84
 	 *
85
-	 * @param $circleId
85
+	 * @param integer $circleId
86 86
 	 * @param $userId
87 87
 	 *
88 88
 	 * @return \OCP\DB\QueryBuilder\IQueryBuilder
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 	/**
151 151
 	 * Return SQL for getMembersFromCircle.
152 152
 	 *
153
-	 * @param $circleId
153
+	 * @param integer $circleId
154 154
 	 *
155 155
 	 * @return \OCP\DB\QueryBuilder\IQueryBuilder
156 156
 	 */
Please login to merge, or discard this patch.