1 | <?php |
||
10 | class Email extends FieldAnonymizerVisitor |
||
11 | { |
||
12 | protected $allowedCharacters = ['.', '@', '-', '+']; |
||
13 | |||
14 | /** |
||
15 | * {@inheritdoc} |
||
16 | */ |
||
17 | public function accept(Attribute $attribute, ContentType $contentType): bool |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function visit(Attribute $attribute, ContentType $contentType): AttributeValue |
||
42 | } |
||
43 |