ILIAS  release_7 Revision v7.30-3-g800a261c036
DummyIDGenerator.php
Go to the documentation of this file.
1<?php
2
4
7
9{
10 private $id = 'dummy';
11
16 public function __construct(string $id = 'dummy')
17 {
18 $this->id = $id;
19 }
20
25 {
26 return new ResourceIdentification($this->id);
27 }
28}
An exception for terminatinating execution or to throw for unit testing.
__construct(string $id='dummy')
DummyIDGenerator constructor.