Files
kupshop/bundles/KupShop/UserOauthBundle/Response/MojeIDPathUserResponse.php
2025-08-02 16:30:27 +02:00

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');
}
}