Total Complexity | 9 |
Total Lines | 61 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class NumeroPedimentoAduana implements EntryWithVigencias |
||
12 | { |
||
13 | use EntryWithVigenciasTrait; |
||
14 | |||
15 | /** @var string */ |
||
16 | private $aduana; |
||
17 | |||
18 | /** @var string */ |
||
19 | private $patente; |
||
20 | |||
21 | /** @var int */ |
||
22 | private $ejercicio; |
||
23 | |||
24 | /** @var int */ |
||
25 | private $cantidad; |
||
26 | |||
27 | 8 | public function __construct( |
|
52 | } |
||
53 | |||
54 | 3 | public function aduana(): string |
|
55 | { |
||
56 | 3 | return $this->aduana; |
|
57 | } |
||
58 | |||
59 | 3 | public function patente(): string |
|
60 | { |
||
61 | 3 | return $this->patente; |
|
62 | } |
||
63 | |||
64 | 3 | public function ejercicio(): int |
|
65 | { |
||
66 | 3 | return $this->ejercicio; |
|
67 | } |
||
68 | |||
69 | 4 | public function cantidad(): int |
|
72 | } |
||
73 | } |
||
74 |