ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
Revision.php
Go to the documentation of this file.
1<?php
2
4
8
14interface Revision
15{
16 public const STATUS_ACTIVE = 1;
17
18
23
24
28 public function getVersionNumber() : int;
29
30
31 public function getInformation() : Information;
32
33
34 public function setInformation(Information $information);
35
36
37 public function setUnavailable() : void;
38
39
43 public function isAvailable() : bool;
44}
An exception for terminatinating execution or to throw for unit testing.
setInformation(Information $information)