21 lines
392 B
PHP
21 lines
392 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KupShop\UserOauthBundle\Response;
|
|
|
|
use HWI\Bundle\OAuthBundle\OAuth\Response\PathUserResponse;
|
|
|
|
class MojeIDPathUserResponse extends PathUserResponse
|
|
{
|
|
public function getBirthdate()
|
|
{
|
|
return $this->getValueForPath('birthdate');
|
|
}
|
|
|
|
public function getAddress()
|
|
{
|
|
return $this->getValueForPath('address');
|
|
}
|
|
}
|