ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailAddress.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 class ilMailAddress implements Stringable
26 {
27  public function __construct(protected string $mailbox, protected string $host)
28  {
29  }
30 
31  public function setHost(string $host): void
32  {
33  $this->host = $host;
34  }
35 
36  public function setMailbox(string $mailbox): void
37  {
38  $this->mailbox = $mailbox;
39  }
40 
41  public function getHost(): string
42  {
43  return $this->host;
44  }
45 
46 
47  public function getMailbox(): string
48  {
49  return $this->mailbox;
50  }
51 
52  public function __toString(): string
53  {
54  return implode('@', [
55  $this->getMailbox(),
56  $this->getHost(),
57  ]);
58  }
59 }
setMailbox(string $mailbox)
__construct(protected string $mailbox, protected string $host)
setHost(string $host)
Class ilMailAddress.