operation = $operation; $this->notificationKeyName = $notificationKeyName; $this->notificationKey = $notificationKey; $this->registrationIds = $registrationIds; } /** * Build the header for the request * * @return array */ protected function buildBody() { return [ 'operation' => $this->operation, 'notification_key_name' => $this->notificationKeyName, 'notification_key' => $this->notificationKey, 'registration_ids' => $this->registrationIds ]; } }