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 Rating extends Model
{
protected $value = null;
protected $count = null;
/**
* Retrieve the value property
*
* @return float|null
*/
public function getValue()
return $this->value;
}
* Retrieve the count property
public function getCount()
return $this->count;