@@ -100,8 +100,8 @@ |
||
| 100 | 100 | /** |
| 101 | 101 | * Return the relative date in relation to today. Returns something like "last hour" or "two month ago" |
| 102 | 102 | * @param int $timestamp unix timestamp |
| 103 | - * @param boolean $dateOnly |
|
| 104 | - * @return \OC_L10N_String human readable interpretation of the timestamp |
|
| 103 | + * @param integer $dateOnly |
|
| 104 | + * @return string human readable interpretation of the timestamp |
|
| 105 | 105 | * |
| 106 | 106 | * @deprecated 8.0.0 Use \OCP\Template::relative_modified_date() instead |
| 107 | 107 | */ |
@@ -544,7 +544,7 @@ |
||
| 544 | 544 | * @param array $input The array to work on |
| 545 | 545 | * @param int $case Either MB_CASE_UPPER or MB_CASE_LOWER (default) |
| 546 | 546 | * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 |
| 547 | - * @return array |
|
| 547 | + * @return string |
|
| 548 | 548 | * @since 4.5.0 |
| 549 | 549 | */ |
| 550 | 550 | public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8') { |
@@ -21,7 +21,6 @@ |
||
| 21 | 21 | namespace OCA\DAV\Connector\Sabre; |
| 22 | 22 | |
| 23 | 23 | use Sabre\Xml\XmlSerializable; |
| 24 | -use Sabre\Xml\Element; |
|
| 25 | 24 | use Sabre\Xml\Writer; |
| 26 | 25 | |
| 27 | 26 | /** |
@@ -176,7 +176,7 @@ |
||
| 176 | 176 | * Returns an associative array with all translations |
| 177 | 177 | * |
| 178 | 178 | * Called by \OC_L10N_String |
| 179 | - * @return array |
|
| 179 | + * @return string[] |
|
| 180 | 180 | */ |
| 181 | 181 | public function getTranslations() { |
| 182 | 182 | return $this->translations; |
@@ -176,7 +176,7 @@ |
||
| 176 | 176 | * Returns an associative array with all translations |
| 177 | 177 | * |
| 178 | 178 | * Called by \OC_L10N_String |
| 179 | - * @return array |
|
| 179 | + * @return string[] |
|
| 180 | 180 | */ |
| 181 | 181 | public function getTranslations() { |
| 182 | 182 | return $this->translations; |
@@ -144,6 +144,9 @@ |
||
| 144 | 144 | return true; |
| 145 | 145 | } |
| 146 | 146 | |
| 147 | + /** |
|
| 148 | + * @param string $path |
|
| 149 | + */ |
|
| 147 | 150 | public function url_stat($path) { |
| 148 | 151 | if (isset(self::$data[$path])) { |
| 149 | 152 | $size = strlen(self::$data[$path]); |
@@ -29,7 +29,6 @@ |
||
| 29 | 29 | namespace OCA\DAV\Connector\Sabre; |
| 30 | 30 | |
| 31 | 31 | use OC\Files\View; |
| 32 | -use OCA\DAV\Upload\FutureFile; |
|
| 33 | 32 | use OCP\Files\ForbiddenException; |
| 34 | 33 | use Sabre\DAV\Exception\Forbidden; |
| 35 | 34 | use Sabre\DAV\Exception\NotFound; |
@@ -176,7 +176,7 @@ |
||
| 176 | 176 | * Returns an associative array with all translations |
| 177 | 177 | * |
| 178 | 178 | * Called by \OC_L10N_String |
| 179 | - * @return array |
|
| 179 | + * @return string[] |
|
| 180 | 180 | */ |
| 181 | 181 | public function getTranslations() { |
| 182 | 182 | return $this->translations; |
@@ -23,7 +23,6 @@ |
||
| 23 | 23 | |
| 24 | 24 | use OCP\Files\IMimeTypeLoader; |
| 25 | 25 | use OCP\IDBConnection; |
| 26 | - |
|
| 27 | 26 | use Doctrine\DBAL\Exception\UniqueConstraintViolationException; |
| 28 | 27 | |
| 29 | 28 | /** |
@@ -89,6 +89,9 @@ |
||
| 89 | 89 | $this->user = $user; |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | + /** |
|
| 93 | + * @param string $tagId |
|
| 94 | + */ |
|
| 92 | 95 | function createFile($tagId, $data = null) { |
| 93 | 96 | try { |
| 94 | 97 | $tags = $this->tagManager->getTagsByIds([$tagId]); |