From fae637b9b49472c5c2bb670e7fd2ae5a7dbcbc7a Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Wed, 30 Oct 2019 20:59:43 +0100 Subject: [stable15] Fix to strict typehint in FileMimeType Signed-off-by: Roeland Jago Douma --- apps/workflowengine/lib/Check/FileMimeType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/workflowengine/lib/Check/FileMimeType.php b/apps/workflowengine/lib/Check/FileMimeType.php index 220b516f5c0..8d07ea62fc9 100644 --- a/apps/workflowengine/lib/Check/FileMimeType.php +++ b/apps/workflowengine/lib/Check/FileMimeType.php @@ -83,7 +83,7 @@ class FileMimeType extends AbstractStringCheck { * @param string $mimeType * @return string */ - protected function cacheAndReturnMimeType(string $storageId, string $path, string $mimeType): string { + protected function cacheAndReturnMimeType(string $storageId, $path, string $mimeType): string { if ($path !== null && $this->storage->file_exists($path)) { $this->mimeType[$storageId][$path] = $mimeType; } -- cgit v1.2.3