ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Repositories.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace 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}
__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)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...