ILIAS  trunk Revision v12.0_alpha-1540-g00f839d5fa1
NullProxy.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\WebDAV\Objects;
22
26class NullProxy implements Proxy
27{
28 public function getRefId(): ?int
29 {
30 return null;
31 }
32
33 public function getObjId(): ?int
34 {
35 return null;
36 }
37
38 public function getName(): string
39 {
40 return '';
41 }
42
43 public function setName(string $name): void
44 {
45 }
46
47 public function getLastModified(): int
48 {
49 return 0;
50 }
51
52 public function getType(): Type
53 {
54 return Type::UNKNOWN;
55 }
56
57}