ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ ilDoc Overview
Base.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Component\EntryPoint
;
22
23
use
ILIAS\Component\Component
;
24
use
ILIAS\Component\EntryPoint
;
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
}
ILIAS\Component\EntryPoint\Base
Definition:
Base.php:27
ILIAS\Component\EntryPoint\Base\getName
getName()
Definition:
Base.php:33
ILIAS\Component\EntryPoint\Base\__construct
__construct(protected string $name)
Definition:
Base.php:28
ILIAS\Component\Component
Definition:
Component.php:24
ILIAS\Component\EntryPoint
An entrypoint is where the programm execution starts.
Definition:
EntryPoint.php:28
ILIAS\Component\EntryPoint
Definition:
Base.php:21
components
ILIAS
Component
src
EntryPoint
Base.php
Generated on Sat Oct 18 2025 23:02:46 for ILIAS by
1.9.4 (using
Doxyfile
)