From ea29f6c46f855946234ae5737eff517d55a4c8ad Mon Sep 17 00:00:00 2001 From: Tim Gooren Date: Wed, 24 Mar 2021 14:12:33 +0000 Subject: [PATCH] type changed to bool --- src/Entity/SshKey.php | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/src/Entity/SshKey.php b/src/Entity/SshKey.php index 2f87654..bbb5216 100644 --- a/src/Entity/SshKey.php +++ b/src/Entity/SshKey.php @@ -30,7 +30,7 @@ class SshKey extends AbstractEntity protected $fingerprint; /** - * @var string + * @var bool */ protected $isDefault; @@ -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; - } }