Skip to content

Commit

Permalink
[TASK] Renamed variable sign to $federalState
Browse files Browse the repository at this point in the history
  • Loading branch information
hojalatheef committed Dec 12, 2024
1 parent 7d3a9b6 commit e42ff68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/Parser/WarnCellParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ public function parse(string $warnCellData): array
foreach ($warnCellRecords as $index => $warnCellRecord) {
// Ensure row has exactly 5 fields
if (count($warnCellRecord) === 5) {
[$warnCellId, $name, $shortName, , $sign] = $warnCellRecord; // Skip CCC field
[$warnCellId, $name, $shortName, , $federalState] = $warnCellRecord; // Skip CCC field
$parsedWarnCells[] = [
'warn_cell_id' => $warnCellId,
'name' => $name,
'short_name' => $shortName,
'sign' => $sign,
'sign' => $federalState,
];
}
}
Expand Down

0 comments on commit e42ff68

Please sign in to comment.