Skip to content
Snippets Groups Projects

Issue #3264606: Unable to add Acquia Account

Merged Jürgen Haas requested to merge issue/drd-3264606:3264606-unable-to-add into 4.0.x
@@ -88,14 +88,14 @@ class Account extends DrdPiAccount implements AccountInterface {
* {@inheritdoc}
*/
public function getEmail(): string {
return $this->get('email');
return $this->get('email') ?? '';
}
/**
* {@inheritdoc}
*/
public function getPrivateKey(): string {
return $this->getDecrypted('private_key');
return $this->getDecrypted('private_key') ?? '';
}
/**
Loading