ILIAS  release_8 Revision v8.24
ThunkValue.php
Go to the documentation of this file.
1<?php
2
20
23
24//use ILIAS\BackgroundTasks\ValueType;
32{
33 protected Type $type;
34
35 public function getType(): Type
36 {
37 return $this->parentTask->getOutputType();
38 }
39
46 public function serialize()
47 {
48 return '';
49 }
50
60 public function unserialize($serialized)
61 {
62 // Nothing to do.
63 }
64
70 public function getHash(): string
71 {
72 return '';
73 }
74
75 public function equals(Value $other): bool
76 {
77 return false;
78 }
79
83 public function setValue($value): void
84 {
85 // TODO: Implement setValue() method.
86 }
87}
unserialize($serialized)
Constructs the object http://php.net/manual/en/serializable.unserialize.php.
Definition: ThunkValue.php:60
serialize()
String representation of object http://php.net/manual/en/serializable.serialize.php.
Definition: ThunkValue.php:46
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...