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 Phone extends Model
{
protected $country = null;
protected $city = null;
protected $number = null;
protected $sanitizedNumber = null;
protected $call = null;
/**
* Retrieve the country property
*
* @return string|null
*/
public function getCountry()
return $this->country;
}
* Retrieve the city property
public function getCity()
return $this->city;
* Retrieve the number property
public function getNumber()
return $this->number;
* Retrieve the sanitizedNumber property
public function getSanitizedNumber()
return $this->sanitizedNumber;
* Retrieve the call property
public function getCall()
return $this->call;