Skip to content

Commit b483088

Browse files
committed
Rewrite misspelling
1 parent 1874f07 commit b483088

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webapp/src/Service/ExternalContestSourceService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ protected function loadContest(): void
572572
* @throws NonUniqueResultException
573573
* @throws TransportExceptionInterface
574574
*/
575-
public function importEvent(array $event, array $eventsToSKip): void
575+
public function importEvent(array $event, array $eventsToSkip): void
576576
{
577577
// Check whether we have received an exit signal.
578578
if (function_exists('pcntl_signal_dispatch')) {
@@ -604,7 +604,7 @@ public function importEvent(array $event, array $eventsToSKip): void
604604
$entityType = 'contests';
605605
}
606606

607-
if ($eventId !== null && in_array($eventId, $eventsToSKip)) {
607+
if ($eventId !== null && in_array($eventId, $eventsToSkip)) {
608608
$this->logger->info("Skipping event with ID %s and type %s as requested",
609609
[$eventId, $event['type']]);
610610
return;

0 commit comments

Comments
 (0)