ILIAS  release_7 Revision v7.30-3-g800a261c036
StandardRepositoryPreloader.php
Go to the documentation of this file.
1<?php declare(strict_types=1);
2
4
9
15{
32
39 public function __construct(
44 ) {
45 $this->resource_repository = $resource_repository;
46 $this->revision_repository = $revision_repository;
47 $this->information_repository = $information_repository;
48 $this->stakeholder_repository = $stakeholder_repository;
49 }
50
51 public function preload(array $identification_strings) : void
52 {
53 $this->resource_repository->preload($identification_strings);
54 $this->revision_repository->preload($identification_strings);
55 $this->information_repository->preload($identification_strings);
56 $this->stakeholder_repository->preload($identification_strings);
57 }
58}
An exception for terminatinating execution or to throw for unit testing.
__construct(ResourceRepository $resource_repository, RevisionRepository $revision_repository, InformationRepository $information_repository, StakeholderRepository $stakeholder_repository)