id = $id; } public function setName(string $name) { $this->name = $name; } public function setSecret(string $secret) { $this->secret = $secret; } public function setRedirectUri($redirectUri) { $this->redirectUri = $redirectUri; } public function setIsTrusted(bool $isTrusted) { $this->isTrusted = $isTrusted; } public function isTrusted(): bool { return $this->isTrusted; } }