ILIAS  trunk Revision v11.0_alpha-1723-g8e69f309bab
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=0);
20 
22 
23 use ilDBInterface;
26 
27 class Factory implements FactoryInterface
28 {
29  public function __construct(protected ilDBInterface $db)
30  {
31  }
32 
33  public function settings(): SettingsFactoryInterface
34  {
35  return new SettingsFactory($this->db);
36  }
37 }
__construct(protected ilDBInterface $db)
Definition: Factory.php:29