From 1e804f351c50495f63c5cecf19e16c57aa5b7269 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Tue, 23 Nov 2021 11:39:45 +0100 Subject: [PATCH] fix: Strict types interfaces: `VoterHelperInterface`, `ProvideRoleHierarchyInterface` and `ProvideRoleInterface`. --- src/Bundle/ChillEventBundle/Entity/EventType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillEventBundle/Entity/EventType.php b/src/Bundle/ChillEventBundle/Entity/EventType.php index 823a05334..dda7be4db 100644 --- a/src/Bundle/ChillEventBundle/Entity/EventType.php +++ b/src/Bundle/ChillEventBundle/Entity/EventType.php @@ -160,7 +160,7 @@ class EventType $this->roles->removeElement($role); } - public function getRoles(): array + public function getRoles() { return $this->roles; }