for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace League\OAuth2\Server;
use Lcobucci\JWT\Builder;
/**
* IdTokenClaimsCreatedEvent Event helps to extend claims of the id_token
*
* A usecase is to add nonce If requested by the client
* @author Marc Riemer <[email protected]>
*/
final class IdTokenClaimsCreatedEvent extends IdTokenEvent
{
* Builder
private Builder $builder;
public function __construct(string $name, Builder $builder)
parent::__construct($name);
$this->builder = $builder;
}
public function getBuilder(): Builder
return $this->builder;