Skip to content

Commit aba211f

Browse files
committed
refactor: remove unnecessary comment from CreditCardRules
1 parent 10a5a03 commit aba211f

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

system/Validation/CreditCardRules.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,6 @@ public function valid_cc_number(?string $ccNumber, string $type): bool
199199
// Remove any spaces and dashes
200200
$ccNumber = str_replace([' ', '-'], '', $ccNumber);
201201

202-
// Non-numeric values cannot be a number...duh
203202
if (! ctype_digit($ccNumber)) {
204203
return false;
205204
}

0 commit comments

Comments
 (0)