for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ddeboer\Vatin\Vies\Response;
class CheckVatResponse
{
private $countryCode;
private $vatNumber;
private $requestDate;
private $valid;
private $name;
private $address;
public function getCountryCode()
return $this->countryCode;
}
public function getVatNumber()
return $this->vatNumber;
public function getRequestDate()
if (!$this->requestDate instanceof \DateTime) {
$this->requestDate = new \DateTime($this->requestDate);
return $this->requestDate;
public function isValid()
return $this->valid;
public function getName()
return $this->name;
public function getAddress()
return $this->address;