Skip to content

Commit

Permalink
fixed phpstan + minor retexting
Browse files Browse the repository at this point in the history
  • Loading branch information
Lung committed Apr 27, 2024
1 parent c62a538 commit 3a8b828
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/Event/EventType/Obrok/EventTypeObrok.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ public function getContentArbiterGuest(): ContentArbiterGuest
$ca->languages = true;

return $ca;

}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Import/ImportSrs.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private function mapDataIntoNewIst(array $data, Event $event, ?User $existingUse
default => false,
};
$participant = null;
if ($existingUser == null) {
if ($existingUser === null) {
$existingUser = $this->userService->createSkautisUser(
$event,
(int)$skautisUserId,
Expand Down
2 changes: 1 addition & 1 deletion src/Templates/cs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ dashboard-admin:
emailFrom: "Email prodávajícího zaplaceného účastníka"
emailTo: "Email kupujícího účastníka"
editParticipant: "Editovat údaje"
cancelParticipant: "Účastník nedorazí :("
cancelParticipant: "Označit účastníka že nedorazí"
changeNotice: "Upravit"
import-file: "Import SRS souboru pro IST"
import-submit: "Start importu"
Expand Down
2 changes: 1 addition & 1 deletion src/Templates/en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ dashboard-admin:
emailFrom: "Selling paid participant email"
emailTo: "Buying participant email"
editParticipant: "Edit details"
cancelParticipant: "Participant is not going :("
cancelParticipant: "Mark participant as not going"
changeNotice: "Edit"
import-file: "Import SRS for IST file"
import-submit: "Start import"
Expand Down
2 changes: 1 addition & 1 deletion src/Templates/sk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ dashboard-admin:
emailFrom: "Email prodávajícího zaplaceného účastníka"
emailTo: "Email kupujícího účastníka"
editParticipant: "Editovat údaje"
cancelParticipant: "Účastník nedorazí :("
cancelParticipant: "Označit účastníka že nedorazí"
changeNotice: "Upravit"
import-file: "Import SRS souboru pro IST"
import-submit: "Start importu"
Expand Down

0 comments on commit 3a8b828

Please sign in to comment.