for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yandex\Market\Partner\Models;
use Yandex\Common\Model;
class AddressOutlet extends Model
{
protected $city = null;
protected $street = null;
protected $number = null;
protected $building = null;
protected $estate = null;
protected $block = null;
protected $additional = null;
protected $km = null;
/**
* @return null
*/
public function getCity()
return $this->city;
}
public function getStreet()
return $this->street;
public function getNumber()
return $this->number;
public function getBuilding()
return $this->building;
public function getEstate()
return $this->estate;
public function getBlock()
return $this->block;
public function getAdditional()
return $this->additional;
public function getKm()
return $this->km;