Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | trait CorreoIntercambioDteInfoTrait |
||
31 | { |
||
32 | /** |
||
33 | * Correo de intercambio de DTE del contribuyente. |
||
34 | * |
||
35 | * @var string|null |
||
36 | */ |
||
37 | protected ?string $correoIntercambioDte = null; |
||
38 | |||
39 | /** |
||
40 | * {@inheritDoc} |
||
41 | */ |
||
42 | public function setCorreoIntercambioDte(string $correoIntercambioDte): static |
||
43 | { |
||
44 | $this->correoIntercambioDte = $correoIntercambioDte; |
||
45 | |||
46 | return $this; |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * {@inheritDoc} |
||
51 | */ |
||
52 | public function getCorreoIntercambioDte(): ?string |
||
55 | } |
||
56 | } |
||
57 |