aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/WorkflowEngine/IFileCheck.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/WorkflowEngine/IFileCheck.php')
-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;
}