Total Complexity | 6 |
Total Lines | 49 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class GetContractsCommand |
||
8 | { |
||
9 | /** @var string */ |
||
10 | private $rfc; |
||
11 | |||
12 | /** @var string */ |
||
13 | private $name; |
||
14 | |||
15 | /** @var string */ |
||
16 | private $address; |
||
17 | |||
18 | /** @var string */ |
||
19 | private $email; |
||
20 | |||
21 | 7 | /** @var string */ |
|
22 | private $snid; |
||
23 | 7 | ||
24 | 7 | public function __construct(string $rfc, string $name, string $address, string $email, string $snid) |
|
31 | 7 | } |
|
32 | |||
33 | public function rfc(): string |
||
34 | 7 | { |
|
35 | return $this->rfc; |
||
36 | 7 | } |
|
37 | |||
38 | public function name(): string |
||
39 | 7 | { |
|
40 | return $this->name; |
||
41 | 7 | } |
|
42 | |||
43 | public function address(): string |
||
46 | 7 | } |
|
47 | |||
48 | public function email(): string |
||
49 | { |
||
50 | return $this->email; |
||
51 | } |
||
52 | |||
53 | public function snid(): string |
||
56 | } |
||
57 | } |
||
58 |