1 | <?php |
||
20 | class EmailContainingTextMatcher implements EmailMatcher { |
||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $text; |
||
25 | |||
26 | /** |
||
27 | * @param string $text |
||
28 | */ |
||
29 | public function __construct($text) |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function __toString() |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | public function matches(Email $email) |
||
49 | } |
||
50 |