From 965aaf23455ec43e8c6f419e5e49b0d6205d4c91 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 3 Mar 2020 16:26:48 +0100 Subject: [PATCH] fix phpstan --- Models/Invoice.php | 72 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/Models/Invoice.php b/Models/Invoice.php index 4cce215..7b3d6ba 100644 --- a/Models/Invoice.php +++ b/Models/Invoice.php @@ -79,28 +79,100 @@ class Invoice implements \JsonSerializable private $client = 0; + /** + * Receiver. + * + * @var string + * @since 1.0.0 + */ private $shipTo = ''; + /** + * For the attention of. + * + * @var string + * @since 1.0.0 + */ private $shipFAO = ''; + /** + * Shipping address. + * + * @var string + * @since 1.0.0 + */ private $shipAddress = ''; + /** + * Shipping city. + * + * @var string + * @since 1.0.0 + */ private $shipCity = ''; + /** + * Shipping zip. + * + * @var string + * @since 1.0.0 + */ private $shipZip = ''; + /** + * Shipping country. + * + * @var string + * @since 1.0.0 + */ private $shipCountry = ''; + /** + * Billing. + * + * @var string + * @since 1.0.0 + */ private $billTo = ''; + /** + * Billing for the attention of. + * + * @var string + * @since 1.0.0 + */ private $billFAO = ''; + /** + * Billing address. + * + * @var string + * @since 1.0.0 + */ private $billAddress = ''; + /** + * Billing city. + * + * @var string + * @since 1.0.0 + */ private $billCity = ''; + /** + * Billing zip. + * + * @var string + * @since 1.0.0 + */ private $billZip = ''; + /** + * Billing country. + * + * @var string + * @since 1.0.0 + */ private $billCountry = ''; /**