ImapConfig.php
1012 字节
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
<?php
namespace Lib\Imap;
class ImapConfig {
protected string $host = '';
protected string $password = '';
protected string $email = '';
/**
* @param string $email
*/
public function setEmail(string $email): static
{
$this->email = $email;
return $this;
}
/**
* @param string $host
*/
public function setHost(string $host): static
{
$this->host = $host;
return $this;
}
/**
* @param string $password
*/
public function setPassword(string $password): static
{
$this->password = $password;
return $this;
}
/**
* @return string
*/
public function getEmail(): string
{
return $this->email;
}
/**
* @return string
*/
public function getHost(): string
{
return $this->host;
}
/**
* @return string
*/
public function getPassword(): string
{
return $this->password;
}
}