ILIAS  trunk Revision v12.0_alpha-1540-g00f839d5fa1
TreeProxy.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\WebDAV\Objects;
22
26class TreeProxy implements Proxy
27{
28 public function __construct(
29 protected int $ref_id,
30 protected int $obj_id,
31 protected string $title,
32 protected int $last_update,
33 protected Type $type
34 ) {
35 }
36
37 public function getRefId(): ?int
38 {
39 return $this->ref_id;
40 }
41
42 public function getObjId(): ?int
43 {
44 return $this->obj_id;
45 }
46
47 public function getLastModified(): int
48 {
49 return $this->last_update;
50 }
51
52 public function getName(): string
53 {
54 return $this->title;
55 }
56
57 public function setName(string $name): void
58 {
59 $this->title = $name;
60 }
61
62 public function getType(): Type
63 {
64 return $this->type;
65 }
66
67}
__construct(protected int $ref_id, protected int $obj_id, protected string $title, protected int $last_update, protected Type $type)
Definition: TreeProxy.php:28
$ref_id
Definition: ltiauth.php:66