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