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 I\Factory
28{
29 public function __construct(
30 protected SignalGeneratorInterface $signal_generator
31 ) {
32 }
33
34 public function standard(URI $async_url): Standard
35 {
36 return new Standard($this->signal_generator, $async_url);
37 }
38
39 public function state(): State\Factory
40 {
41 return new State\Factory();
42 }
43}
The scope of this class is split ilias-conform URI's into components.
Definition: URI.php:35
__construct(protected SignalGeneratorInterface $signal_generator)
Definition: Factory.php:29