@@ -30,7 +30,7 @@ |
||
30 | 30 | |
31 | 31 | /** |
32 | 32 | * @param \Sabre\DAVACL\PrincipalBackend\BackendInterface $principalBackend |
33 | - * @param \Sabre\CardDAV\Backend\BackendInterface $carddavBackend |
|
33 | + * @param CardDavBackend $carddavBackend |
|
34 | 34 | * @param string $principalPrefix |
35 | 35 | */ |
36 | 36 | public function __construct(\Sabre\DAVACL\PrincipalBackend\BackendInterface $principalBackend, \Sabre\CardDAV\Backend\BackendInterface $carddavBackend, $principalPrefix = 'principals') { |
@@ -1331,6 +1331,9 @@ |
||
1331 | 1331 | } |
1332 | 1332 | } |
1333 | 1333 | |
1334 | + /** |
|
1335 | + * @param string $lang |
|
1336 | + */ |
|
1334 | 1337 | protected static function findBestL10NOption($options, $lang) { |
1335 | 1338 | $fallback = $englishFallback = false; |
1336 | 1339 | foreach ($options as $option) { |
@@ -473,7 +473,7 @@ |
||
473 | 473 | /** |
474 | 474 | * get database row of a give share |
475 | 475 | * |
476 | - * @param $id |
|
476 | + * @param integer $id |
|
477 | 477 | * @return array |
478 | 478 | * @throws ShareNotFound |
479 | 479 | */ |
@@ -770,7 +770,7 @@ |
||
770 | 770 | |
771 | 771 | /** |
772 | 772 | * @param Share[] $shares |
773 | - * @param $userId |
|
773 | + * @param string $userId |
|
774 | 774 | * @return Share[] The updates shares if no update is found for a share return the original |
775 | 775 | */ |
776 | 776 | private function resolveGroupShares($shares, $userId) { |
@@ -105,6 +105,9 @@ |
||
105 | 105 | return $result; |
106 | 106 | } |
107 | 107 | |
108 | + /** |
|
109 | + * @param string $value |
|
110 | + */ |
|
108 | 111 | private function getServersConfig($value) { |
109 | 112 | $regex = '/' . $value . '$/S'; |
110 | 113 |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | * |
159 | 159 | * By default this excludes the automatically generated birthday calendar |
160 | 160 | * |
161 | - * @param $principalUri |
|
161 | + * @param string $principalUri |
|
162 | 162 | * @param bool $excludeBirthday |
163 | 163 | * @return int |
164 | 164 | */ |
@@ -303,6 +303,9 @@ discard block |
||
303 | 303 | return array_values($calendars); |
304 | 304 | } |
305 | 305 | |
306 | + /** |
|
307 | + * @param string $principalUri |
|
308 | + */ |
|
306 | 309 | public function getUsersOwnCalendars($principalUri) { |
307 | 310 | $principalUri = $this->convertPrincipal($principalUri, true); |
308 | 311 | $fields = array_values($this->propertyMap); |
@@ -851,7 +854,7 @@ discard block |
||
851 | 854 | * calendar-data. If the result of a subsequent GET to this object is not |
852 | 855 | * the exact same as this request body, you should omit the ETag. |
853 | 856 | * |
854 | - * @param mixed $calendarId |
|
857 | + * @param integer $calendarId |
|
855 | 858 | * @param string $objectUri |
856 | 859 | * @param string $calendarData |
857 | 860 | * @return string |
@@ -894,7 +897,7 @@ discard block |
||
894 | 897 | * calendar-data. If the result of a subsequent GET to this object is not |
895 | 898 | * the exact same as this request body, you should omit the ETag. |
896 | 899 | * |
897 | - * @param mixed $calendarId |
|
900 | + * @param integer $calendarId |
|
898 | 901 | * @param string $objectUri |
899 | 902 | * @param string $calendarData |
900 | 903 | * @return string |
@@ -1309,7 +1312,7 @@ discard block |
||
1309 | 1312 | * @param string $principalUri |
1310 | 1313 | * @param string $uri |
1311 | 1314 | * @param array $properties |
1312 | - * @return mixed |
|
1315 | + * @return integer |
|
1313 | 1316 | */ |
1314 | 1317 | function createSubscription($principalUri, $uri, array $properties) { |
1315 | 1318 | |
@@ -1712,6 +1715,9 @@ discard block |
||
1712 | 1715 | return $this->sharingBackend->applyShareAcl($resourceId, $acl); |
1713 | 1716 | } |
1714 | 1717 | |
1718 | + /** |
|
1719 | + * @param boolean $toV2 |
|
1720 | + */ |
|
1715 | 1721 | private function convertPrincipal($principalUri, $toV2) { |
1716 | 1722 | if ($this->principalBackend->getPrincipalPrefix() === 'principals') { |
1717 | 1723 | list(, $name) = URLUtil::splitPath($principalUri); |
@@ -90,7 +90,7 @@ |
||
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
93 | - * @param \Doctrine\DBAL\Connection $connection |
|
93 | + * @param IDBConnection $connection |
|
94 | 94 | * @return string[] |
95 | 95 | */ |
96 | 96 | protected function getAllNonUTF8BinTables($connection) { |
@@ -61,7 +61,7 @@ |
||
61 | 61 | * The deserialize method is called during xml parsing. |
62 | 62 | * |
63 | 63 | * @param Reader $reader |
64 | - * @return mixed |
|
64 | + * @return null|ShareTypeList |
|
65 | 65 | */ |
66 | 66 | static function xmlDeserialize(Reader $reader) { |
67 | 67 | $shareTypes = []; |
@@ -80,7 +80,7 @@ |
||
80 | 80 | * the next element. |
81 | 81 | * |
82 | 82 | * @param Reader $reader |
83 | - * @return mixed |
|
83 | + * @return null|TagList |
|
84 | 84 | */ |
85 | 85 | static function xmlDeserialize(Reader $reader) { |
86 | 86 | $tags = []; |