From 44d38bcef5f744e6303b0053d65d57935db83dcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Wed, 15 Dec 2021 22:06:18 +0100 Subject: [PATCH] fix typing for email --- src/Bundle/ChillThirdPartyBundle/Entity/ThirdParty.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillThirdPartyBundle/Entity/ThirdParty.php b/src/Bundle/ChillThirdPartyBundle/Entity/ThirdParty.php index 06b0dddbc..8b2dc6aca 100644 --- a/src/Bundle/ChillThirdPartyBundle/Entity/ThirdParty.php +++ b/src/Bundle/ChillThirdPartyBundle/Entity/ThirdParty.php @@ -409,7 +409,7 @@ class ThirdParty implements TrackCreationInterface, TrackUpdateInterface * * @return string|null */ - public function getEmail() + public function getEmail(): ?string { return $this->email; }