Skip to content

Commit d7f3471

Browse files
authored
Updated response after adding mailbox_verification
1 parent e5e7c33 commit d7f3471

File tree

1 file changed

+14
-17
lines changed

1 file changed

+14
-17
lines changed

README.md

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,17 @@ Example Use Case
3131

3232
echo var_dump($validator->validateExtended('[email protected]'));
3333

34-
// object(stdClass)#2 (4) {
35-
// ["address"]=>
36-
// string(19) "[email protected]"
37-
// ["did_you_mean"]=>
38-
// NULL
39-
// ["is_valid"]=>
40-
// bool(true)
41-
// ["parts"]=>
42-
// object(stdClass)#4 (3) {
43-
// ["display_name"]=>
44-
// NULL
45-
// ["domain"]=>
46-
// string(10) "ymail.com"
47-
// ["local_part"]=>
48-
// string(8) "someuser"
49-
// }
50-
// }
34+
object(stdClass)#207 (8) {
35+
["address"]=> string(18) "[email protected]"
36+
["did_you_mean"]=> NULL
37+
["is_disposable_address"]=> bool(false)
38+
["is_role_address"]=> bool(false)
39+
["is_valid"]=> bool(true)
40+
["mailbox_verification"]=> string(4) "true"
41+
["parts"]=> object(stdClass)#208 (3) {
42+
["display_name"]=> NULL
43+
["domain"]=> string(9) "ymail.com"
44+
["local_part"]=> string(8) "someuser"
45+
}
46+
["reason"]=> NULL
47+
}

0 commit comments

Comments
 (0)