client = new Client($this, $sessions, $did, $serviceUrl); // Load all function collections $this->bsky = new BskyClient($this); $this->atproto = new AtprotoClient($this); $this->chat = new ChatClient($this); $this->ozone = new OzoneClient($this); } /** * Check if client is in public mode (no authentication). */ public function isPublicMode(): bool { return $this->client->isPublicMode(); } }