ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Define.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23class Define implements Dependency
24{
25 public function __construct(
26 protected Name $name,
27 ) {
28 }
29
30 public function __toString(): string
31 {
32 return "DEFINE: " . $this->name;
33 }
34
35 public function getName(): string
36 {
37 return (string) $this->name;
38 }
39
40 public function resetResolutions(): void
41 {
42 }
43}
__construct(protected Name $name,)
Definition: Define.php:25