/**
  * Get the album
  *
  * @param int $albumId
  *
  * @return array|null
  */
 public function getAlbum($albumId)
 {
     $albumId = (int) $albumId;
     $cacheKey = 'album_' . $albumId;
     if ($this->cache->isDataObsolete($cacheKey)) {
         if (($album = $this->fetchAlbum($albumId)) === null) {
             return null;
         }
         $this->cache->setData($cacheKey, $album);
     }
     return parent::getAlbum($albumId);
 }