@@ -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') { |
@@ -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 |
@@ -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 = []; |
@@ -91,7 +91,7 @@ |
||
91 | 91 | * @param bool $isLoggedIn |
92 | 92 | * @param bool $isAdminUser |
93 | 93 | * @param ContentSecurityPolicyManager $contentSecurityPolicyManager |
94 | - * @param CSRFTokenManager $csrfTokenManager |
|
94 | + * @param CsrfTokenManager $csrfTokenManager |
|
95 | 95 | */ |
96 | 96 | public function __construct(IRequest $request, |
97 | 97 | ControllerMethodReflector $reflector, |
@@ -1036,7 +1036,7 @@ discard block |
||
1036 | 1036 | * @param string $app |
1037 | 1037 | * @param \OCP\IConfig $config |
1038 | 1038 | * @param \OCP\IL10N $l |
1039 | - * @return bool |
|
1039 | + * @return string |
|
1040 | 1040 | * |
1041 | 1041 | * @throws Exception if app is not compatible with this version of ownCloud |
1042 | 1042 | * @throws Exception if no app-name was specified |
@@ -1216,6 +1216,9 @@ discard block |
||
1216 | 1216 | } |
1217 | 1217 | } |
1218 | 1218 | |
1219 | + /** |
|
1220 | + * @param string $lang |
|
1221 | + */ |
|
1219 | 1222 | protected static function findBestL10NOption($options, $lang) { |
1220 | 1223 | $fallback = $similarLangFallback = $englishFallback = false; |
1221 | 1224 | |
@@ -1310,8 +1313,8 @@ discard block |
||
1310 | 1313 | } |
1311 | 1314 | |
1312 | 1315 | /** |
1313 | - * @param $config |
|
1314 | - * @param $l |
|
1316 | + * @param OCP\IConfig $config |
|
1317 | + * @param OCP\IL10N $l |
|
1315 | 1318 | * @param $info |
1316 | 1319 | * @throws Exception |
1317 | 1320 | */ |
@@ -318,6 +318,11 @@ |
||
318 | 318 | */ |
319 | 319 | // FIXME This method is only public, until OC_L10N does not need it anymore, |
320 | 320 | // FIXME This is also the reason, why it is not in the public interface |
321 | + |
|
322 | + /** |
|
323 | + * @param string $app |
|
324 | + * @param string $lang |
|
325 | + */ |
|
321 | 326 | public function getL10nFilesForApp($app, $lang) { |
322 | 327 | $languageFiles = []; |
323 | 328 |