Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfzdotnet committed Feb 23, 2014
1 parent 63d3bfc commit 3b6d993
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions lib/Tmdb/Model/Lists.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
namespace Tmdb\Model;

use Tmdb\Model\Common\GenericCollection;
use Tmdb\Model\Image\BackdropImage;
use Tmdb\Model\Image\PosterImage;

class Lists extends AbstractModel {
Expand Down Expand Up @@ -67,6 +68,11 @@ class Lists extends AbstractModel {
*/
private $posterImage;

/**
* @var BackdropImage
*/
private $backdropImage;

public static $_properties = array(
'created_by',
'description',
Expand Down Expand Up @@ -262,4 +268,22 @@ public function getPosterPath()
{
return $this->posterPath;
}

/**
* @param \Tmdb\Model\Image\BackdropImage $backdropImage
* @return $this
*/
public function setBackdropImage($backdropImage)
{
$this->backdropImage = $backdropImage;
return $this;
}

/**
* @return \Tmdb\Model\Image\BackdropImage
*/
public function getBackdropImage()
{
return $this->backdropImage;
}
}

0 comments on commit 3b6d993

Please sign in to comment.