Total Complexity | 3 |
Total Lines | 52 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class TagFactory implements TagFactoryInterface |
||
15 | { |
||
16 | /** |
||
17 | * The classes registry. |
||
18 | * |
||
19 | * @var array<string, string> |
||
20 | */ |
||
21 | public static $registry = [ |
||
22 | 'attributes_factory' => AttributesFactory::class, |
||
23 | '!--' => Comment::class, |
||
24 | '*' => Tag::class, |
||
25 | ]; |
||
26 | |||
27 | 5 | public static function build( |
|
33 | } |
||
34 | |||
35 | public function getInstance( |
||
68 |