forked from alexandresalome/mailcatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPerson.php
More file actions
71 lines (62 loc) · 1.42 KB
/
Copy pathPerson.php
File metadata and controls
71 lines (62 loc) · 1.42 KB
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
66
67
68
69
70
71
<?php
namespace Alex\MailCatcher;
class Person
{
protected $name;
protected $email;
/**
* @param $name
* @param $email
*/
public function __construct($name, $email)
{
$this->name = null === $name ? null : (string) $name;
$this->email = null === $email ? null : (string) $email;
}
/**
* @param $text
*
* @return bool
*/
public function match($text)
{
return false !== strpos($this->name, $text) || false !== strpos($this->email, $text);
}
/**
* @return null|string
*/
public function getName()
{
return $this->name;
}
/**
* @return null|string
*/
public function getEmail()
{
return $this->email;
}
/**
* @param Person $person
*
* @return bool
*/
public function equals(Person $person)
{
return $person->getName() === $this->name && $person->getEmail() === $this->email;
}
/**
* @param $string
*
* @return Person
*/
public static function createFromString($string)
{
if (preg_match('/^(?:(.+) )?<(.+)>$/', $string, $vars)) {
$name = $vars[1] === '' ? null : $vars[1];
$email = $vars[2] === '' ? null : $vars[2];
return new Person($name, $email);
}
throw new \InvalidArgumentException(sprintf('Unable to parse Person "%s".', $string));
}
}