3 declare(strict_types=1);
17 use DateTimeImmutable;
65 if (is_null($this->rejecter)) {
67 $data = $this->
raw(self::FIELD_REJECTER);
86 if (is_null($this->rejectedAt)) {
88 $data = $this->
raw(self::FIELD_REJECTED_AT);
93 if (
false === $data) {
96 $this->rejectedAt = $data;
110 if (is_null($this->reason)) {
112 $data = $this->
raw(self::FIELD_REASON);
113 if (is_null($data)) {
116 $this->reason = (string) $data;
148 #[\ReturnTypeWillChange]
155 return (
object) $data;