ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Base.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
26abstract 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:28