apiKey = $apiKey; $this->idsModel = new Ids($apiKey); $this->query = new Query($apiKey); } public function getAllBots(): array { return $this->getGrid(); } protected function calculateCustomParams(array &$result): void { $this->applyDeviceParams($result); } protected function convertTimeToUserTimezone(array &$result): void { $fields = ['lastseen']; $this->translateTimeZones($result, $fields); } }