ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Factory.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
26
27class Factory implements FactoryInterface
28{
29 protected InternalManipulator $internal_manipulator;
31
37 public function __construct(
38 InternalManipulator $internal_manipulator,
40 ) {
41 $this->internal_manipulator = $internal_manipulator;
42 $this->repository = $repository;
43 }
44
45 public function get(
48 return new Manipulator(
49 $this->internal_manipulator,
50 $this->repository,
51 $set
52 );
53 }
54}
__construct(InternalManipulator $internal_manipulator, RepositoryInterface $repository,)
Note that the general Manipulator used in MetaData does not have an mutable internal state (prepared ...
Definition: Factory.php:37
InternalManipulator $internal_manipulator
Definition: Factory.php:29