diff options
author | provokateurin <kate@provokateurin.de> | 2024-09-06 09:44:04 +0200 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2024-09-09 11:09:37 +0200 |
commit | 007be83a968e6aee649ff8de173163cb5ef93a86 (patch) | |
tree | 18e03c4a5562989bbd6482e9e6a47f3619b71e30 /lib/private/Files/SimpleFS/SimpleFile.php | |
parent | fc10fa592626d154a91d77d35c93beabdc7605c1 (diff) | |
download | nextcloud-server-fix/oc/inheritdoc.tar.gz nextcloud-server-fix/oc/inheritdoc.zip |
fix(OC): Remove doc blocks for OCP implementationsfix/oc/inheritdoc
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'lib/private/Files/SimpleFS/SimpleFile.php')
-rw-r--r-- | lib/private/Files/SimpleFS/SimpleFile.php | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/lib/private/Files/SimpleFS/SimpleFile.php b/lib/private/Files/SimpleFS/SimpleFile.php index cbb3af4db29..b69df95e0ae 100644 --- a/lib/private/Files/SimpleFS/SimpleFile.php +++ b/lib/private/Files/SimpleFS/SimpleFile.php @@ -7,7 +7,6 @@ namespace OC\Files\SimpleFS; use OCP\Files\File; use OCP\Files\NotFoundException; -use OCP\Files\NotPermittedException; use OCP\Files\SimpleFS\ISimpleFile; class SimpleFile implements ISimpleFile { @@ -17,40 +16,22 @@ class SimpleFile implements ISimpleFile { $this->file = $file; } - /** - * Get the name - */ public function getName(): string { return $this->file->getName(); } - /** - * Get the size in bytes - */ public function getSize(): int|float { return $this->file->getSize(); } - /** - * Get the ETag - */ public function getETag(): string { return $this->file->getEtag(); } - /** - * Get the last modification time - */ public function getMTime(): int { return $this->file->getMTime(); } - /** - * Get the content - * - * @throws NotPermittedException - * @throws NotFoundException - */ public function getContent(): string { $result = $this->file->getContent(); @@ -61,13 +42,6 @@ class SimpleFile implements ISimpleFile { return $result; } - /** - * Overwrite the file - * - * @param string|resource $data - * @throws NotPermittedException - * @throws NotFoundException - */ public function putContent($data): void { try { $this->file->putContent($data); @@ -105,47 +79,22 @@ class SimpleFile implements ISimpleFile { } - /** - * Delete the file - * - * @throws NotPermittedException - */ public function delete(): void { $this->file->delete(); } - /** - * Get the MimeType - */ public function getMimeType(): string { return $this->file->getMimeType(); } - /** - * {@inheritDoc} - */ public function getExtension(): string { return $this->file->getExtension(); } - /** - * Open the file as stream for reading, resulting resource can be operated as stream like the result from php's own fopen - * - * @return resource|false - * @throws \OCP\Files\NotPermittedException - * @since 14.0.0 - */ public function read() { return $this->file->fopen('r'); } - /** - * Open the file as stream for writing, resulting resource can be operated as stream like the result from php's own fopen - * - * @return resource|false - * @throws \OCP\Files\NotPermittedException - * @since 14.0.0 - */ public function write() { return $this->file->fopen('w'); } |