/**
  * @param SearchPlayListsCommandResult $commandResult
  *
  * @return PlayList
  */
 private function getFirstPlayList(SearchPlayListsCommandResult $commandResult)
 {
     $playLists = $commandResult->playLists();
     return reset($playLists);
 }