3 declare(strict_types=1);
70 if (is_null($this->code)) {
72 $data = $this->
raw(self::FIELD_CODE);
76 $this->code = (string) $data;
90 if (is_null($this->message)) {
92 $data = $this->
raw(self::FIELD_MESSAGE);
96 $this->message = (string) $data;
110 if (is_null($this->extensionId)) {
112 $data = $this->
raw(self::FIELD_EXTENSION_ID);
113 if (is_null($data)) {
116 $this->extensionId = (string) $data;
130 if (is_null($this->extensionKey)) {
132 $data = $this->
raw(self::FIELD_EXTENSION_KEY);
133 if (is_null($data)) {
136 $this->extensionKey = (string) $data;
178 public function by(
string $key)
180 $data = $this->
raw($key);
181 if (is_null($data)) {