ILIAS
trunk Revision v11.0_alpha-2645-g16283d3b3f8
◀ ilDoc Overview
Factory.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\Services\Reader
;
22
23
use
ILIAS\MetaData\Paths\Navigator\NavigatorFactoryInterface
;
24
use
ILIAS\MetaData\Elements\SetInterface
;
25
26
class
Factory
implements
FactoryInterface
27
{
28
protected
NavigatorFactoryInterface
$navigator_factory
;
29
30
public
function
__construct
(
NavigatorFactoryInterface
$navigator_factory)
31
{
32
$this->navigator_factory =
$navigator_factory
;
33
}
34
35
public
function
get
(
SetInterface
$set
):
ReaderInterface
36
{
37
return
new
Reader
(
38
$this->navigator_factory,
39
$set
40
);
41
}
42
}
ILIAS\MetaData\Services\Reader\Factory
Definition:
Factory.php:26
ILIAS\MetaData\Services\Reader\ReaderInterface
Definition:
ReaderInterface.php:26
ILIAS\MetaData\Services\Reader\Factory\$navigator_factory
NavigatorFactoryInterface $navigator_factory
Definition:
Factory.php:28
SetInterface
ILIAS\MetaData\Services\Reader\FactoryInterface
Definition:
FactoryInterface.php:25
NavigatorFactoryInterface
ILIAS\MetaData\Elements\SetInterface
Definition:
SetInterface.php:26
ILIAS\MetaData\Paths\Navigator\NavigatorFactoryInterface
Definition:
NavigatorFactoryInterface.php:27
ILIAS\MetaData\Services\Reader\Reader\$set
SetInterface $set
Definition:
Reader.php:32
ReaderInterface
ILIAS\MetaData\Services\Reader\Factory\__construct
__construct(NavigatorFactoryInterface $navigator_factory)
Definition:
Factory.php:30
ILIAS\MetaData\Services\Reader
Definition:
Factory.php:21
components
ILIAS
MetaData
classes
Services
Reader
Factory.php
Generated on Mon Sep 1 2025 23:01:58 for ILIAS by
1.8.13 (using
Doxyfile
)