3 declare(strict_types=1);
62 if (is_null($this->version)) {
64 $data = $this->
raw(self::FIELD_VERSION);
68 $this->version = (int) $data;
83 if (is_null($this->currentPassword)) {
85 $data = $this->
raw(self::FIELD_CURRENT_PASSWORD);
89 $this->currentPassword = (string) $data;
103 if (is_null($this->newPassword)) {
105 $data = $this->
raw(self::FIELD_NEW_PASSWORD);
106 if (is_null($data)) {
109 $this->newPassword = (string) $data;