ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.RepoService.php
Go to the documentation of this file.
1<?php
2
19declare(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}
Internal factory for data objects.
__construct(protected IRSSWrapper $irss_wrapper, protected InternalDataService $data, protected \ilDBInterface $db)
Interface ilDBInterface.