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 | /** @var string */ |
||
22 | private $snid; |
||
23 | |||
24 | 7 | public function __construct(string $rfc, string $name, string $address, string $email, string $snid) |
|
31 | } |
||
32 | |||
33 | 7 | public function rfc(): string |
|
34 | { |
||
35 | 7 | return $this->rfc; |
|
36 | } |
||
37 | |||
38 | 7 | public function name(): string |
|
39 | { |
||
40 | 7 | return $this->name; |
|
41 | } |
||
42 | |||
43 | 7 | public function address(): string |
|
46 | } |
||
47 | |||
48 | 7 | public function email(): string |
|
49 | { |
||
50 | 7 | return $this->email; |
|
51 | } |
||
52 | |||
53 | 7 | public function snid(): string |
|
56 | } |
||
57 | } |
||
58 |