ILIAS  trunk Revision v11.0_alpha-1761-g6dbbfa7b760
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Base.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
26 abstract class Base implements EntryPoint
27 {
28  public function __construct(
29  protected string $name
30  ) {
31  }
32 
33  public function getName(): string
34  {
35  return $this->name;
36  }
37 }
__construct(protected string $name)
Definition: Base.php:28
An entrypoint is where the programm execution starts.
Definition: EntryPoint.php:27