for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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 <[email protected]>
*/
* Created by Marcin Pudełek <[email protected]>
* Date: 30.11.2017
* Time: 09:34
namespace mrcnpdlk\Xmdb\Model\Tmdb;
class Person
{
* @var integer
public $id;
* @var string
public $name;
public $gender;
public $photo;
public function __construct(int $id, string $name, int $gender = null, string $photo = null)
$this->id = $id;
$this->name = $name;
$this->gender = $gender;
$this->photo = $photo;
}