From 32f306e935e860ead2211d1cd9ab3b44543a65af Mon Sep 17 00:00:00 2001 From: Andreas Palm Date: Thu, 6 Feb 2025 10:36:02 +0100 Subject: [PATCH] Fix variable init --- .../ShippingMethod/Model/CreateShipmentResult.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/classes/Modules/ShippingMethod/Model/CreateShipmentResult.php b/classes/Modules/ShippingMethod/Model/CreateShipmentResult.php index 044071cd..f8c69574 100644 --- a/classes/Modules/ShippingMethod/Model/CreateShipmentResult.php +++ b/classes/Modules/ShippingMethod/Model/CreateShipmentResult.php @@ -12,9 +12,9 @@ class CreateShipmentResult { public bool $Success = false; public array $Errors = []; - public ?string $Label; - public ?string $ExportDocuments; - public ?string $TrackingNumber; - public ?string $TrackingUrl; - public ?string $AdditionalInfo; + public ?string $Label = null; + public ?string $ExportDocuments = null; + public ?string $TrackingNumber = null; + public ?string $TrackingUrl = null; + public ?string $AdditionalInfo = null; } \ No newline at end of file