From 0cfe1e3a7d347b5bfc171619fd0a4e86a56b6398 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 30 Oct 2017 10:59:34 +0100 Subject: [PATCH] Merge --- Utils/EDI/Edifact/Components/UNH.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Utils/EDI/Edifact/Components/UNH.php b/Utils/EDI/Edifact/Components/UNH.php index 4c69f96ee..12d885b98 100644 --- a/Utils/EDI/Edifact/Components/UNH.php +++ b/Utils/EDI/Edifact/Components/UNH.php @@ -26,6 +26,8 @@ namespace phpOMS\Utils\EDI\Edifact\Components; */ class UNH { + private $ref = ''; + private $type = ''; private $version = 'D'; @@ -36,8 +38,9 @@ class UNH private $bdewVersion = '2.6d'; - public function __construct(string $type, string $version, string $subersion, string $un, string $bdewVersion) + public function __construct(string $ref, string $type, string $version, string $subersion, string $un, string $bdewVersion) { + $this->ref = $ref; $this->type = $type; $this->version = $version; $this->subersion = $subersion;