-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathInternet.php
65 lines (51 loc) · 1.27 KB
/
Internet.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
declare(strict_types=1);
namespace Faker\Core\Implementation;
use Faker\Core\Extension\InternetExtension;
final class Internet implements InternetExtension
{
public function email(): string
{
// TODO: Implement email() method.
}
public function username(): string
{
// TODO: Implement username() method.
}
public function password(int $minLength = 6, int $maxLength = 20): string
{
// TODO: Implement password() method.
}
public function domainName(): string
{
// TODO: Implement domainName() method.
}
public function tld(): string
{
// TODO: Implement tld() method.
}
public function url(): string
{
// TODO: Implement url() method.
}
public function slug(int $wordCount = 6, bool $variableWordCount = true): string
{
// TODO: Implement slug() method.
}
public function ipv4(): string
{
// TODO: Implement ipv4() method.
}
public function ipv6(): string
{
// TODO: Implement ipv6() method.
}
public function localIpv4(): string
{
// TODO: Implement localIpv4() method.
}
public static function macAddress(): string
{
// TODO: Implement macAddress() method.
}
}