ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ 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
Definition:
Base.php:21
ILIAS\Component\EntryPoint\Base\__construct
__construct(protected string $name)
Definition:
Base.php:28
ILIAS\Component\EntryPoint\Base\getName
getName()
Definition:
Base.php:33
ILIAS\Component\EntryPoint
An entrypoint is where the programm execution starts.
Definition:
EntryPoint.php:27
ILIAS\Component\EntryPoint\Base
Definition:
Base.php:26
Component
components
ILIAS
Component
src
EntryPoint
Base.php
Generated on Sun Aug 31 2025 23:02:32 for ILIAS by
1.8.13 (using
Doxyfile
)