ILIAS  trunk Revision v12.0_alpha-1540-g00f839d5fa1
StreamHandler.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\WebDAV\Objects;
22
24
29{
30 public function get(): ?FileStream;
31
32 public function publish(): void;
33
34 public function put(string $title, mixed $data, bool $publish): bool;
35}
The base interface for all filesystem streams.
Definition: FileStream.php:32
put(string $title, mixed $data, bool $publish)