Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Identification.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static function is_valid($id_document_number = null, $id_type = null)
* Passport numbers are either like MA123456 or 12345678.
*/
if (2 == $id_type) {
if (mb_strlen ($id_document_number) < 8) {
if (mb_strlen($id_document_number) < 8) {
return false;
}

Expand All @@ -74,7 +74,7 @@ public static function is_valid($id_document_number = null, $id_type = null)
* South African Asylum Document Numbers
*/
if (3 == $id_type) {
if (mb_strlen ($id_document_number) < 8) {
if (mb_strlen($id_document_number) < 8) {
return false;
}

Expand Down
2 changes: 1 addition & 1 deletion src/STSMeterNo.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Jacques\Validators;

class SMSMeterNo
class STSMeterNo
{
public static function is_valid($meter_no)
{
Expand Down