Total Complexity | 5 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class RefundResponse extends AbstractResponse |
||
8 | { |
||
9 | /** @var string */ |
||
10 | public $fileNumber; |
||
11 | |||
12 | /** @var string */ |
||
13 | public $invoiceType; |
||
14 | |||
15 | /** @var array */ |
||
16 | const INVOICE_TYPES = [ |
||
17 | 'preauto', |
||
18 | 'noshow', |
||
19 | 'complementaire', |
||
20 | ]; |
||
21 | |||
22 | /** |
||
23 | * RefundResponse constructor. |
||
24 | * |
||
25 | * @param array $data |
||
26 | * @throws Exception |
||
27 | */ |
||
28 | public function __construct(array $data = []) |
||
47 |