aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workflowengine
diff options
context:
space:
mode:
authorKate <26026535+provokateurin@users.noreply.github.com>2024-09-27 07:40:05 +0200
committerGitHub <noreply@github.com>2024-09-27 07:40:05 +0200
commit4f88123d2ba649fb6fe2df3d069a297c101dd019 (patch)
treeed1cd250ce4edc6a6aae09b13f0f631947185d63 /apps/workflowengine
parent7887ab8cfa6c20e582a9f3b8b5fecce0201e8e43 (diff)
parent227609a95412644087522d7762de7c6683cbc35c (diff)
downloadnextcloud-server-4f88123d2ba649fb6fe2df3d069a297c101dd019.tar.gz
nextcloud-server-4f88123d2ba649fb6fe2df3d069a297c101dd019.zip
Merge pull request #48219 from nextcloud/fix/istorage/return-types
Diffstat (limited to 'apps/workflowengine')
-rw-r--r--apps/workflowengine/tests/Check/FileMimeTypeTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/workflowengine/tests/Check/FileMimeTypeTest.php b/apps/workflowengine/tests/Check/FileMimeTypeTest.php
index 1fc5118c5c4..0911a47f894 100644
--- a/apps/workflowengine/tests/Check/FileMimeTypeTest.php
+++ b/apps/workflowengine/tests/Check/FileMimeTypeTest.php
@@ -16,7 +16,7 @@ use OCP\IRequest;
use Test\TestCase;
class TemporaryNoLocal extends Temporary {
- public function instanceOfStorage($className) {
+ public function instanceOfStorage($className): bool {
if ($className === '\OC\Files\Storage\Local') {
return false;
} else {