Merge pull request #71 from bessone/master

initialIP removed from API
This commit is contained in:
Peter Bakker
2024-12-23 08:35:47 +01:00
committed by GitHub
2 changed files with 1 additions and 18 deletions

View File

@@ -359,7 +359,7 @@ class Client
$data = json_decode((string)$response->getBody(), true); $data = json_decode((string)$response->getBody(), true);
$accountURL = $response->getHeaderLine('Location'); $accountURL = $response->getHeaderLine('Location');
$date = (new \DateTime())->setTimestamp(strtotime($data['createdAt'])); $date = (new \DateTime())->setTimestamp(strtotime($data['createdAt']));
return new Account($data['contact'], $date, ($data['status'] == 'valid'), $data['initialIp'], $accountURL); return new Account($data['contact'], $date, ($data['status'] == 'valid'), $accountURL);
} }
/** /**

View File

@@ -20,11 +20,6 @@ class Account
*/ */
protected $isValid; protected $isValid;
/**
* @var
*/
protected $initialIp;
/** /**
* @var string * @var string
*/ */
@@ -36,17 +31,14 @@ class Account
* @param array $contact * @param array $contact
* @param \DateTime $createdAt * @param \DateTime $createdAt
* @param bool $isValid * @param bool $isValid
* @param string $initialIp
* @param string $accountURL * @param string $accountURL
*/ */
public function __construct( public function __construct(
array $contact, array $contact,
\DateTime $createdAt, \DateTime $createdAt,
bool $isValid, bool $isValid,
string $initialIp,
string $accountURL string $accountURL
) { ) {
$this->initialIp = $initialIp;
$this->contact = $contact; $this->contact = $contact;
$this->createdAt = $createdAt; $this->createdAt = $createdAt;
$this->isValid = $isValid; $this->isValid = $isValid;
@@ -89,15 +81,6 @@ class Account
return $this->contact; return $this->contact;
} }
/**
* Return initial IP
* @return string
*/
public function getInitialIp(): string
{
return $this->initialIp;
}
/** /**
* Returns validation status * Returns validation status
* @return bool * @return bool