ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
DatabasePathsParserFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
28 {
32  protected \ilDBInterface $db;
36 
37  public function __construct(
38  \ilDBInterface $db,
39  StructureSetInterface $structure,
40  DictionaryInterface $dictionary,
41  NavigatorFactoryInterface $navigator_factory,
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,)