Skip to content

Commit

Permalink
Fixing type issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardov03 committed Jan 21, 2023
1 parent e809d8c commit f7e08fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DgiiRncValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public static function check(string $id): array|bool
'rnc' => $id,
'name' => $name,
'commercial_name' => $commercialName,
'status' => Status::from($status)->toString(),
'status' => Status::from((int)$status)->toString(),
];
}
}

0 comments on commit f7e08fa

Please sign in to comment.