1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- declare(strict_types=1);
- namespace OCP\UserMigration;
- use OCP\Files\Folder;
- interface IExportDestination {
-
- public function addFileContents(string $path, string $content): void;
-
- public function addFileAsStream(string $path, $stream): void;
-
- public function copyFolder(Folder $folder, string $destinationPath, ?callable $nodeFilter = null): void;
-
- public function setMigratorVersions(array $versions): void;
-
- public function close(): void;
- }
|