audience = $audience; } public function assert(Token $token): void { if (! $token->isPermittedFor($this->audience)) { throw ConstraintViolation::error( 'The token is not allowed to be used by this audience', $this ); } } }