Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class Product extends DeOlhoNoImposto |
||
10 | { |
||
11 | /** |
||
12 | * Product constructor |
||
13 | * @param string $versao |
||
14 | * @param string $token |
||
15 | */ |
||
16 | public function __construct(string $versao, string $token) |
||
17 | { |
||
18 | parent::__construct($versao, $token); |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @param array $fields |
||
23 | * @return Product |
||
24 | */ |
||
25 | public function product(array $fields): Product |
||
34 | } |
||
35 | |||
36 | } |