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
24
26{
27 protected Icon\Factory $icon_factory;
30
31 public function __construct(
35 ) {
36 $this->icon_factory = $icon_factory;
37 $this->glyph_factory = $glyph_factory;
38 $this->avatar_factory = $avatar_factory;
39 }
40
41 public function icon(): Icon\Factory
42 {
44 }
45
46 public function glyph(): Glyph\Factory
47 {
49 }
50
51 public function avatar(): Avatar\Factory
52 {
54 }
55}
__construct(Icon\Factory $icon_factory, Glyph\Factory $glyph_factory, Avatar\Factory $avatar_factory)
Definition: Factory.php:31