| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function __construct( |
||
| 31 | string $productDocument, |
||
| 32 | string $documentFormat, |
||
| 33 | string $signature, |
||
| 34 | string $productGroup = null, |
||
| 35 | string $type = null |
||
| 36 | ) { |
||
| 37 | $this->productDocument = $productDocument; |
||
| 38 | $this->documentFormat = $documentFormat; |
||
| 39 | $this->signature = $signature; |
||
| 40 | $this->productGroup = $productGroup; |
||
| 41 | $this->type = $type; |
||
| 42 | } |
||
| 43 | |||
| 69 |