3 declare(strict_types=1);
97 if (is_null($this->type)) {
99 $data = $this->
raw(self::FIELD_TYPE);
100 if (is_null($data)) {
103 $this->type = (string) $data;
117 if (is_null($this->oldState)) {
119 $data = $this->
raw(self::FIELD_OLD_STATE);
120 if (is_null($data)) {
138 if (is_null($this->newState)) {
140 $data = $this->
raw(self::FIELD_NEW_STATE);
141 if (is_null($data)) {
159 if (is_null($this->oldIncludedInStatistics)) {
161 $data = $this->
raw(self::FIELD_OLD_INCLUDED_IN_STATISTICS);
162 if (is_null($data)) {
165 $this->oldIncludedInStatistics = (bool) $data;
179 if (is_null($this->newIncludedInStatistics)) {
181 $data = $this->
raw(self::FIELD_NEW_INCLUDED_IN_STATISTICS);
182 if (is_null($data)) {
185 $this->newIncludedInStatistics = (bool) $data;
199 if (is_null($this->target)) {
201 $data = $this->
raw(self::FIELD_TARGET);
202 if (is_null($data)) {
206 $this->target = $className::of($data);
220 if (is_null($this->force)) {
222 $data = $this->
raw(self::FIELD_FORCE);
223 if (is_null($data)) {
226 $this->force = (bool) $data;