for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of datamolino client.
*
* (c) 2018 cwd.at GmbH <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cwd\Datamolino\Model;
class Address
{
/** @var string|null */
private $street;
private $building_no;
private $city;
private $postal_code;
private $country;
/**
* @return null|string
public function getStreet(): ?string
return $this->street;
}
* @param null|string $street
* @return Address
public function setStreet(?string $street): Address
$this->street = $street;
return $this;
public function getBuildingNo(): ?string
return $this->building_no;
* @param null|string $building_no
public function setBuildingNo(?string $building_no): Address
$this->building_no = $building_no;
public function getCity(): ?string
return $this->city;
* @param null|string $city
public function setCity(?string $city): Address
$this->city = $city;
public function getPostalCode(): ?string
return $this->postal_code;
* @param null|string $postal_code
public function setPostalCode(?string $postal_code): Address
$this->postal_code = $postal_code;
public function getCountry(): ?string
return $this->country;
* @param null|string $country
public function setCountry(?string $country): Address
$this->country = $country;