ILIAS  trunk Revision v11.0_alpha-1862-g4e205cb56d4
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.RepoService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
28 {
29  public function __construct(
30  protected IRSSWrapper $irss_wrapper,
31  protected InternalDataService $data,
32  protected \ilDBInterface $db
33  ) {
34  }
35 
37  {
38  return new CriteriaFileRepository(
39  $this->irss_wrapper,
40  $this->data,
41  $this->db
42  );
43  }
44 }
__construct(protected IRSSWrapper $irss_wrapper, protected InternalDataService $data, protected \ilDBInterface $db)
Internal factory for data objects.