Skip to content

Commit

Permalink
Fix OpenProvider _getDomain() undefined index errors
Browse files Browse the repository at this point in the history
  • Loading branch information
uphlewis committed Apr 28, 2023
1 parent 30b5ea3 commit ed55d6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/OpenProvider/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -445,9 +445,9 @@ protected function _getDomain(
'admin' => $this->_parseContactInfo($domainData['admin_handle'], 'customers'),
'tech' => $this->_parseContactInfo($domainData['tech_handle'], 'customers'),
'ns' => $ns,
'created_at' => $domainData['creation_date'],
'updated_at' => $domainData['last_changed'],
'expires_at' => $domainData['expiration_date'],
'created_at' => $domainData['creation_date'] ?? null,
'updated_at' => $domainData['last_changed'] ?? null,
'expires_at' => $domainData['expiration_date'] ?? null,
])->setMessage($msg);

/**
Expand Down

0 comments on commit ed55d6d

Please sign in to comment.