Skip to content

Commit

Permalink
php-cs-fixer update
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenyeargin committed Jan 20, 2024
1 parent b6cfca5 commit 6b4346d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Command/EspSyncCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()) {
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/EventController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 6b4346d

Please sign in to comment.