*/ protected function defaultQuery(): array { $q = $this->song->title; // If the artist is worth noticing, include them into the search. if (!$this->song->artist->is_unknown && !$this->song->artist->is_various) { $q .= " {$this->song->artist->name}"; } return [ 'part' => 'snippet', 'type' => 'video', 'maxResults' => 10, 'pageToken' => $this->pageToken, 'q' => $q, ]; } }