ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
DatabasePathsParserFactory.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
26
28{
32 protected \ilDBInterface $db;
36
37 public function __construct(
42 ) {
43 $this->db = $db;
44 $this->structure = $structure;
45 $this->dictionary = $dictionary;
46 $this->navigator_factory = $navigator_factory;
47 }
48
50 {
51 return new DatabasePathsParser(
52 $this->db,
53 $this->structure,
54 $this->dictionary,
55 $this->navigator_factory
56 );
57 }
58}
__construct(\ilDBInterface $db, StructureSetInterface $structure, DictionaryInterface $dictionary, NavigatorFactoryInterface $navigator_factory,)
Interface ilDBInterface.