fix phpstan

This commit is contained in:
Dennis Eichhorn 2020-03-03 16:26:48 +01:00
parent aac5d085c9
commit 965aaf2345

View File

@ -79,28 +79,100 @@ class Invoice implements \JsonSerializable
private $client = 0; private $client = 0;
/**
* Receiver.
*
* @var string
* @since 1.0.0
*/
private $shipTo = ''; private $shipTo = '';
/**
* For the attention of.
*
* @var string
* @since 1.0.0
*/
private $shipFAO = ''; private $shipFAO = '';
/**
* Shipping address.
*
* @var string
* @since 1.0.0
*/
private $shipAddress = ''; private $shipAddress = '';
/**
* Shipping city.
*
* @var string
* @since 1.0.0
*/
private $shipCity = ''; private $shipCity = '';
/**
* Shipping zip.
*
* @var string
* @since 1.0.0
*/
private $shipZip = ''; private $shipZip = '';
/**
* Shipping country.
*
* @var string
* @since 1.0.0
*/
private $shipCountry = ''; private $shipCountry = '';
/**
* Billing.
*
* @var string
* @since 1.0.0
*/
private $billTo = ''; private $billTo = '';
/**
* Billing for the attention of.
*
* @var string
* @since 1.0.0
*/
private $billFAO = ''; private $billFAO = '';
/**
* Billing address.
*
* @var string
* @since 1.0.0
*/
private $billAddress = ''; private $billAddress = '';
/**
* Billing city.
*
* @var string
* @since 1.0.0
*/
private $billCity = ''; private $billCity = '';
/**
* Billing zip.
*
* @var string
* @since 1.0.0
*/
private $billZip = ''; private $billZip = '';
/**
* Billing country.
*
* @var string
* @since 1.0.0
*/
private $billCountry = ''; private $billCountry = '';
/** /**