for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Germania\Addresses;
abstract class AddressAbstract implements AddressInterface
{
/**
* @var string
*/
public $type;
public $street1;
public $street2;
public $zip;
public $location;
public $country;
* @inheritDoc
public function getType() : ?string
return $this->type;
}
public function getStreet1() : ?string
return $this->street1;
public function getStreet2() : ?string
return $this->street2;
public function getZip() : ?string
return $this->zip;
public function getLocation() : ?string
return $this->location;
public function getCountry() : ?string
return $this->country;