Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--composer.lock16
-rw-r--r--lib/TextFile.php18
2 files changed, 17 insertions, 17 deletions
diff --git a/composer.lock b/composer.lock
index 45963ded2..92d9ed21e 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "b7304857559254ddd2054e835c029ff1",
+ "content-hash": "5fbae4730c1f4bec14f467f9f9d375f6",
"packages": [],
"packages-dev": [
{
@@ -13,17 +13,17 @@
"source": {
"type": "git",
"url": "https://github.com/ChristophWurst/nextcloud_composer.git",
- "reference": "56056903c03bf8c29b2a2822153951c8f783a85a"
+ "reference": "42b53effee9e232a9cf091760ee448d98eb2fae0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ChristophWurst/nextcloud_composer/zipball/56056903c03bf8c29b2a2822153951c8f783a85a",
- "reference": "56056903c03bf8c29b2a2822153951c8f783a85a",
+ "url": "https://api.github.com/repos/ChristophWurst/nextcloud_composer/zipball/42b53effee9e232a9cf091760ee448d98eb2fae0",
+ "reference": "42b53effee9e232a9cf091760ee448d98eb2fae0",
"shasum": ""
},
"require": {
"php": "^7.4 || ~8.0 || ~8.1",
- "psr/container": "^1.0",
+ "psr/container": "^1.1.1",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.1"
},
@@ -31,7 +31,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "24.0.0-dev"
+ "dev-master": "25.0.0-dev"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -49,7 +49,7 @@
"issues": "https://github.com/ChristophWurst/nextcloud_composer/issues",
"source": "https://github.com/ChristophWurst/nextcloud_composer/tree/master"
},
- "time": "2022-03-01T01:41:01+00:00"
+ "time": "2022-07-13T02:14:57+00:00"
},
{
"name": "composer/pcre",
@@ -4590,7 +4590,7 @@
"prefer-stable": false,
"prefer-lowest": false,
"platform": {
- "php": "^7.3|^8.0"
+ "php": "^7.4|^8.0"
},
"platform-dev": {
"ext-mbstring": "*"
diff --git a/lib/TextFile.php b/lib/TextFile.php
index b562fd885..87420fcae 100644
--- a/lib/TextFile.php
+++ b/lib/TextFile.php
@@ -42,23 +42,23 @@ class TextFile implements ISimpleFile {
$this->encodingService = $encodingService;
}
- public function getName() {
+ public function getName(): string {
return $this->file->getName();
}
- public function getSize() {
+ public function getSize(): int {
return $this->file->getSize();
}
- public function getETag() {
+ public function getETag(): string {
return $this->file->getETag();
}
- public function getMTime() {
+ public function getMTime(): int {
return $this->file->getMTime();
}
- public function getContent() {
+ public function getContent(): string {
$content = $this->encodingService->encodeToUtf8($this->file->getContent());
if ($content === null) {
throw new NotFoundException('File not compatible with text because it could not be encoded to UTF-8.');
@@ -67,15 +67,15 @@ class TextFile implements ISimpleFile {
return $content;
}
- public function putContent($data) {
- return $this->file->putContent($data);
+ public function putContent($data): void {
+ $this->file->putContent($data);
}
- public function delete() {
+ public function delete(): void {
$this->file->delete();
}
- public function getMimeType() {
+ public function getMimeType(): string {
return 'text/plain;encoding=utf-8';
}