$redirectUri */ public function __construct( string $id, string $name, string|array $redirectUri, private readonly bool $isTrusted, ) { $this->identifier = $id; $this->name = $name; $this->redirectUri = $redirectUri; } public function isConfidential(): bool { return true; } public function isTrusted(): bool { return $this->isTrusted; } }