diff options
author | Joas Schilling <coding@schilljs.com> | 2019-11-29 12:04:34 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2019-12-10 09:11:43 +0100 |
commit | 4a151c545a6f255f8d8e293cbd673fadc518391e (patch) | |
tree | 16ed8261d05b15c24d44cabac1b9365c82b0d465 /apps/workflowengine/lib/Check/TFileCheck.php | |
parent | 511a4ba66fdf27f7ab48c37fd3faf12b4f2ef089 (diff) | |
download | nextcloud-server-4a151c545a6f255f8d8e293cbd673fadc518391e.tar.gz nextcloud-server-4a151c545a6f255f8d8e293cbd673fadc518391e.zip |
Allow to specify apps that somethign is a dir
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/workflowengine/lib/Check/TFileCheck.php')
-rw-r--r-- | apps/workflowengine/lib/Check/TFileCheck.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/workflowengine/lib/Check/TFileCheck.php b/apps/workflowengine/lib/Check/TFileCheck.php index 383c2d4ef5f..afaf46b52bf 100644 --- a/apps/workflowengine/lib/Check/TFileCheck.php +++ b/apps/workflowengine/lib/Check/TFileCheck.php @@ -37,14 +37,19 @@ trait TFileCheck { /** @var string */ protected $path; + /** @var bool */ + protected $isDir; + /** * @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 { $this->storage = $storage; $this->path = $path; + $this->isDir = $isDir; } /** |