From 6b4346d389c174108138c17ede8335970c400167 Mon Sep 17 00:00:00 2001 From: Stephen Yeargin Date: Sat, 20 Jan 2024 09:53:04 -0600 Subject: [PATCH] php-cs-fixer update --- src/Command/EspSyncCommand.php | 2 +- src/Controller/EventController.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Command/EspSyncCommand.php b/src/Command/EspSyncCommand.php index b437498..4b9fcb8 100644 --- a/src/Command/EspSyncCommand.php +++ b/src/Command/EspSyncCommand.php @@ -66,7 +66,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int } else { $output['ignored'][] = $member->getDisplayName(); } - // If is found, check subscription status and update if Active + // If is found, check subscription status and update if Active } else { if ('Active' == $subscription->State) { if (!$member->getIsLocalDoNotContact()) { diff --git a/src/Controller/EventController.php b/src/Controller/EventController.php index b055f95..92583ac 100644 --- a/src/Controller/EventController.php +++ b/src/Controller/EventController.php @@ -83,7 +83,7 @@ public function ical(Event $event): Response } #[Route(path: '/{id}/attendee-export', name: 'event_attendee_export', methods: ['GET'])] - public function attendeeExport(Event $event, MemberToCSVService $memberToCsvService): Response + public function attendeeExport(Event $event, MemberToCsvService $memberToCsvService): Response { $members = $event->getAttendees(); $filename = $event->getCode().'.csv';