@@ -879,7 +879,7 @@ |
||
| 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 |
@@ -124,7 +124,7 @@ |
||
| 124 | 124 | /** |
| 125 | 125 | * list Circles depends on type (or all) and name (parts) and minimum level. |
| 126 | 126 | * |
| 127 | - * @param $type |
|
| 127 | + * @param integer $type |
|
| 128 | 128 | * @param string $name |
| 129 | 129 | * @param int $level |
| 130 | 130 | * |
@@ -73,7 +73,7 @@ |
||
| 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); |
@@ -82,7 +82,7 @@ discard block |
||
| 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 |
||
| 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 | */ |