|
|
@@ -17,7 +17,7 @@ use App\State\Provider\IdCardRequestProvider;
|
|
|
)]
|
|
|
class IdCardRequest
|
|
|
{
|
|
|
- protected string $base64Photo;
|
|
|
+ protected string $photo;
|
|
|
|
|
|
protected string $age;
|
|
|
|
|
|
@@ -25,14 +25,14 @@ class IdCardRequest
|
|
|
|
|
|
protected string $status;
|
|
|
|
|
|
- public function getBase64Photo(): string
|
|
|
+ public function getPhoto(): string
|
|
|
{
|
|
|
- return $this->base64Photo;
|
|
|
+ return $this->photo;
|
|
|
}
|
|
|
|
|
|
- public function setBase64Photo(string $base64Photo): void
|
|
|
+ public function setPhoto(string $photo): void
|
|
|
{
|
|
|
- $this->base64Photo = $base64Photo;
|
|
|
+ $this->photo = $photo;
|
|
|
}
|
|
|
|
|
|
public function getAge(): string
|