This commit is contained in:
2025-10-28 21:59:12 +05:00
parent 3409849fa3
commit 5edcde1e4c
3 changed files with 26 additions and 9 deletions

View File

@@ -40,4 +40,20 @@ trait UserAdjustments
{
return $this->options && array_key_exists($option, $this->options) ? $this->options[$option] : '';
}
/**
* Passport serie
*/
public function passport_serie(): string
{
return (string) $this->getOption('passport_serie');
}
/**
* Passport id
*/
public function passport_id(): string
{
return (string) $this->getOption('passport_id');
}
}