From: Raphaƫl Gertz Date: Sat, 28 Aug 2021 03:46:24 +0000 (+0200) Subject: Fix strict types X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/57c318ddcf974dfbe261e30b278a835ee12c40be Fix strict types --- diff --git a/Entity/Snippet.php b/Entity/Snippet.php index 28c7c1c..4e9d406 100644 --- a/Entity/Snippet.php +++ b/Entity/Snippet.php @@ -207,11 +207,11 @@ class Snippet { /** * Set rate * - * @param string $rate + * @param int $rate * * @return Snippet */ - public function setRate(?string $rate): Snippet { + public function setRate(?int $rate): Snippet { $this->rate = $rate; return $this; @@ -220,9 +220,9 @@ class Snippet { /** * Get rate * - * @return string + * @return int */ - public function getRate(): ?string { + public function getRate(): ?int { return $this->rate; } @@ -233,7 +233,7 @@ class Snippet { * * @return User */ - public function setHat(bool $hat): Snippet { + public function setHat(?bool $hat): Snippet { $this->hat = $hat; return $this; @@ -244,7 +244,7 @@ class Snippet { * * @return bool */ - public function getHat(): bool { + public function getHat(): ?bool { return $this->hat; } /**