ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
LostIdentification.php
Go to the documentation of this file.
2
9{
10
14 private $serialized_string = "";
15
16
22 public function __construct(string $serialized_string = null)
23 {
24 $this->serialized_string = $serialized_string;
25 }
26
27
31 public function serialize()
32 {
34 }
35
36
40 public function unserialize($serialized)
41 {
42 return;
43 }
44
45
49 public function getClassName() : string
50 {
51 return "Lost";
52 }
53
54
58 public function getInternalIdentifier() : string
59 {
60 return "Lost";
61 }
62
63
67 public function getProviderNameForPresentation() : string
68 {
69 return "Lost";
70 }
71}
An exception for terminatinating execution or to throw for unit testing.
__construct(string $serialized_string=null)
NullIdentification constructor.