ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
ResourceRepository.php
Go to the documentation of this file.
1<?php declare(strict_types=1);
2
4
5use Generator;
9
16{
17
23 public function blank(ResourceIdentification $identification) : StorableResource;
24
25
32 public function get(ResourceIdentification $identification) : StorableResource;
33
34
40 public function has(ResourceIdentification $identification) : bool;
41
42
46 public function store(StorableResource $resource) : void;
47
48
52 public function getAll() : Generator;
53
54
58 public function delete(StorableResource $resource) : void;
59}
An exception for terminatinating execution or to throw for unit testing.
blank(ResourceIdentification $identification)