From 231e7dc9cd42b3f5f875dbe8d6018ae9d0354688 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 13 Jan 2022 21:43:23 +0000 Subject: [PATCH] style: move closing bracket --- tests/FakeEventRepository.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/FakeEventRepository.php b/tests/FakeEventRepository.php index 232cd01..50ecee9 100644 --- a/tests/FakeEventRepository.php +++ b/tests/FakeEventRepository.php @@ -18,7 +18,8 @@ final class FakeEventRepository implements EventRepository ['name' => 'Did not attend', 'response' => RsvpResponse::RESPONSE_NO, 'is_host' => false], ]; - public function getConfirmedAttendees(): Collection { + public function getConfirmedAttendees(): Collection + { return Collection::make(self::$rsvps) ->filter(fn (array $attendee): bool => $attendee['response'] == RsvpResponse::RESPONSE_YES)