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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-11-29 14:04:34 +0300
committerJoas Schilling <coding@schilljs.com>2019-12-10 11:11:43 +0300
commit4a151c545a6f255f8d8e293cbd673fadc518391e (patch)
tree16ed8261d05b15c24d44cabac1b9365c82b0d465 /lib/public/WorkflowEngine
parent511a4ba66fdf27f7ab48c37fd3faf12b4f2ef089 (diff)
Allow to specify apps that somethign is a dir
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public/WorkflowEngine')
-rw-r--r--lib/public/WorkflowEngine/IFileCheck.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/public/WorkflowEngine/IFileCheck.php b/lib/public/WorkflowEngine/IFileCheck.php
index 07626a0071d..546b72fa2dc 100644
--- a/lib/public/WorkflowEngine/IFileCheck.php
+++ b/lib/public/WorkflowEngine/IFileCheck.php
@@ -37,8 +37,11 @@ use OCP\Files\Storage\IStorage;
*/
interface IFileCheck extends IEntityCheck {
/**
+ * @param IStorage $storage
+ * @param string $path
+ * @param bool $isDir
* @since 18.0.0
*/
- public function setFileInfo(IStorage $storage, string $path);
+ public function setFileInfo(IStorage $storage, string $path, bool $isDir = false): void;
}