mrcnpdlk/xmdb-api

View on GitHub
src/Model/Tmdb/Movie/Collection.php

Summary

Maintainability
A
35 mins
Test Coverage
<?php
/**
 * xMDB-API
 *
 * Copyright © 2017 pudelek.org.pl 
 *  
 * @license MIT License (MIT)
 *  
 * For the full copyright and license information, please view source file 
 * that is bundled with this package in the file LICENSE
 *
 * @author Marcin Pudełek <marcin@pudelek.org.pl>
 */

/**
 * Created by Marcin.
 * Date: 30.11.2017
 * Time: 00:10
 */

namespace mrcnpdlk\Xmdb\Model\Tmdb\Movie;


class Collection
{
    /**
     * @var integer
     */
    public $id;
    /**
     * @var string
     */
    public $name;
    /**
     * @var string
     */
    public $poster;
    /**
     * @var string
     */
    public $backdrop;

    public function __construct(int $id, string $name, string $poster = null, string $backdrop = null)
    {
        $this->id       = $id;
        $this->name     = $name;
        $this->poster   = $poster;
        $this->backdrop = $backdrop;
    }
}