1234567891011121314151617181920212223242526 |
- <?php
- declare(strict_types=1);
- namespace OCP\WorkflowEngine;
- use OCP\Files\Storage\IStorage;
- interface IFileCheck extends IEntityCheck {
-
- public function setFileInfo(IStorage $storage, string $path, bool $isDir = false): void;
- }
|