Skip to content

Commit

Permalink
Merge branch 'PubKeyDefault' into 'master'
Browse files Browse the repository at this point in the history
type changed to bool

See merge request transip/restapi-php-library!131
  • Loading branch information
tgooren committed Mar 24, 2021
2 parents 3de4f90 + ea29f6c commit 457e4c6
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions src/Entity/SshKey.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class SshKey extends AbstractEntity
protected $fingerprint;

/**
* @var string
* @var bool
*/
protected $isDefault;

Expand Down Expand Up @@ -99,18 +99,10 @@ public function getFingerprint(): string
}

/**
* @return string
* @return bool
*/
public function getIsDefault(): string
public function getIsDefault(): bool
{
return $this->isDefault;
}

/**
* @param string $isDefault
*/
public function setIsDefault(string $isDefault): void
{
$this->isDefault = $isDefault;
}
}

0 comments on commit 457e4c6

Please sign in to comment.