for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the DbImporter package.
*
* (c) Mauro Cassani<https://github.com/mauretto78>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace DbImporter\Tests\Entity;
final class Photo
{
* @var int
private $id;
private $albumId;
* @var string
private $title;
private $url;
private $thumbnailUrl;
* User constructor.
* @param $id
* @param $albumId
* @param $title
* @param $url
* @param $thumbnailUrl
public function __construct(
$id,
$albumId,
$title,
$url,
$thumbnailUrl
) {
$this->id = $id;
$this->albumId = $albumId;
$this->title = $title;
$this->url = $url;
$this->thumbnailUrl = $thumbnailUrl;
}
* @return int
public function getId()
return $this->id;
public function getAlbumId()
return $this->albumId;
* @return string
public function getTitle()
return $this->title;
public function getUrl()
return $this->url;
public function getThumbnailUrl()
return $this->thumbnailUrl;