ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Define.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 class 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