3 declare(strict_types=1);
70 if (is_null($this->
id)) {
72 $data = $this->
raw(self::FIELD_ID);
76 $this->
id = (string) $data;
90 if (is_null($this->version)) {
92 $data = $this->
raw(self::FIELD_VERSION);
96 $this->version = (int) $data;
111 if (is_null($this->currentPassword)) {
113 $data = $this->
raw(self::FIELD_CURRENT_PASSWORD);
114 if (is_null($data)) {
117 $this->currentPassword = (string) $data;
131 if (is_null($this->newPassword)) {
133 $data = $this->
raw(self::FIELD_NEW_PASSWORD);
134 if (is_null($data)) {
137 $this->newPassword = (string) $data;