Skip to content

Commit

Permalink
Fix cs
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Nöhles <[email protected]>
  • Loading branch information
BolZer committed Aug 16, 2024
1 parent 306aa16 commit 51851de
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tools/Generators/EASEnumGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,6 @@ function generateEnum(array $values): string
$case = strtoupper((string)$case);
$case = rtrim($case, '_');

// Ensure the case name starts with a letter
if (!ctype_alpha((string)$code)) {
$case = 'ICD_' . $case;
}

// Truncate case name if it's too long
if (strlen($case) > 64) {
$case = substr($case, 0, 64);
Expand Down

0 comments on commit 51851de

Please sign in to comment.