Пример #1
0
 /**
  * Uses youtube api to get a trailer for title.
  * 
  * @return string
  */
 public function getTrailer()
 {
     if ($this->trailer) {
         return $this->trailer;
     }
     return $this->trailer = $this->scraper->getTrailer($this->getTitle(), $this->getReleaseDate());
 }