ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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 #[\Override]
36 public function getType(): Type
37 {
38 return $this->parentTask->getOutputType();
39 }
40
47 public function serialize()
48 {
49 return '';
50 }
51
61 public function unserialize($serialized): void
62 {
63 // Nothing to do.
64 }
65
71 public function getHash(): string
72 {
73 return '';
74 }
75
76 public function equals(Value $other): bool
77 {
78 return false;
79 }
80
84 public function setValue($value): void
85 {
86 // TODO: Implement setValue() method.
87 }
88}
unserialize($serialized)
Constructs the object http://php.net/manual/en/serializable.unserialize.php.
Definition: ThunkValue.php:61
serialize()
String representation of object http://php.net/manual/en/serializable.serialize.php.
Definition: ThunkValue.php:47
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...