ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Repositories.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\ResourceStorage;
22 
29 
36 {
37  public function __construct(private RevisionRepository $revision_repository, private ResourceRepository $resource_repository, private CollectionRepository $collection_repository, private InformationRepository $information_repository, private StakeholderRepository $stakeholder_repository, private FlavourRepository $flavour_repository)
38  {
39  }
40 
42  {
43  return $this->revision_repository;
44  }
45 
47  {
48  return $this->resource_repository;
49  }
50 
52  {
53  return $this->collection_repository;
54  }
55 
57  {
58  return $this->information_repository;
59  }
60 
62  {
63  return $this->stakeholder_repository;
64  }
65 
67  {
68  return $this->flavour_repository;
69  }
70 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(private RevisionRepository $revision_repository, private ResourceRepository $resource_repository, private CollectionRepository $collection_repository, private InformationRepository $information_repository, private StakeholderRepository $stakeholder_repository, private FlavourRepository $flavour_repository)