for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yandex\Market\Content\Models\Base;
use Yandex\Common\Model;
class Photo extends Model
{
protected $url = null;
protected $width = null;
protected $height = null;
/**
* Retrieve the url property
*
* @return string|null
*/
public function getUrl()
return $this->url;
}
* Retrieve the width property
* @return int|null
public function getWidth()
return $this->width;
* Retrieve the height property
public function getHeight()
return $this->height;