ILIAS  trunk Revision v12.0_alpha-1540-g00f839d5fa1
Entity.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\WebDAV\Entity;
22
23use Sabre\DAV\INode;
25
29interface Entity extends INode
30{
31 public function __construct(
32 Factory $factory,
33 string $path,
34 ?Proxy $proxy = null,
35 );
36
37 public function getObjectProxy(): ?Proxy;
38
39 public function getPath(): string;
40
41}
__construct(Factory $factory, string $path, ?Proxy $proxy=null,)
$path
Definition: ltiservices.php:30