phpstan improvements (#3092)
This commit is contained in:
@@ -64,7 +64,7 @@ class Customer implements EntityWithMetaFields, EntityWithBudget
|
||||
*/
|
||||
private $name;
|
||||
/**
|
||||
* @var string
|
||||
* @var string|null
|
||||
*
|
||||
* @Serializer\Expose()
|
||||
* @Serializer\Groups({"Default"})
|
||||
@@ -76,7 +76,7 @@ class Customer implements EntityWithMetaFields, EntityWithBudget
|
||||
*/
|
||||
private $number;
|
||||
/**
|
||||
* @var string
|
||||
* @var string|null
|
||||
*
|
||||
* @Serializer\Expose()
|
||||
* @Serializer\Groups({"Customer_Entity"})
|
||||
@@ -99,7 +99,7 @@ class Customer implements EntityWithMetaFields, EntityWithBudget
|
||||
*/
|
||||
private $visible = true;
|
||||
/**
|
||||
* @var string
|
||||
* @var string|null
|
||||
*
|
||||
* @Serializer\Expose()
|
||||
* @Serializer\Groups({"Customer_Entity"})
|
||||
@@ -111,7 +111,7 @@ class Customer implements EntityWithMetaFields, EntityWithBudget
|
||||
*/
|
||||
private $company;
|
||||
/**
|
||||
* @var string
|
||||
* @var string|null
|
||||
*
|
||||
* @Serializer\Expose()
|
||||
* @Serializer\Groups({"Customer_Entity"})
|
||||
@@ -123,7 +123,7 @@ class Customer implements EntityWithMetaFields, EntityWithBudget
|
||||
*/
|
||||
private $vatId;
|
||||
/**
|
||||
* @var string
|
||||
* @var string|null
|
||||
*
|
||||
* @Serializer\Expose()
|
||||
* @Serializer\Groups({"Customer_Entity"})
|
||||
@@ -135,7 +135,7 @@ class Customer implements EntityWithMetaFields, EntityWithBudget
|
||||
*/
|
||||
private $contact;
|
||||
/**
|
||||
* @var string
|
||||
* @var string|null
|
||||
*
|
||||
* @Serializer\Expose()
|
||||
* @Serializer\Groups({"Customer_Entity"})
|
||||
@@ -174,7 +174,7 @@ class Customer implements EntityWithMetaFields, EntityWithBudget
|
||||
*/
|
||||
private $currency = self::DEFAULT_CURRENCY;
|
||||
/**
|
||||
* @var string
|
||||
* @var string|null
|
||||
*
|
||||
* @Serializer\Expose()
|
||||
* @Serializer\Groups({"Customer_Entity"})
|
||||
@@ -186,7 +186,7 @@ class Customer implements EntityWithMetaFields, EntityWithBudget
|
||||
*/
|
||||
private $phone;
|
||||
/**
|
||||
* @var string
|
||||
* @var string|null
|
||||
*
|
||||
* @Serializer\Expose()
|
||||
* @Serializer\Groups({"Customer_Entity"})
|
||||
@@ -198,7 +198,7 @@ class Customer implements EntityWithMetaFields, EntityWithBudget
|
||||
*/
|
||||
private $fax;
|
||||
/**
|
||||
* @var string
|
||||
* @var string|null
|
||||
*
|
||||
* @Serializer\Expose()
|
||||
* @Serializer\Groups({"Customer_Entity"})
|
||||
@@ -214,7 +214,7 @@ class Customer implements EntityWithMetaFields, EntityWithBudget
|
||||
*
|
||||
* Limited via RFC to 254 chars
|
||||
*
|
||||
* @var string
|
||||
* @var string|null
|
||||
*
|
||||
* @Serializer\Expose()
|
||||
* @Serializer\Groups({"Customer_Entity"})
|
||||
@@ -226,7 +226,7 @@ class Customer implements EntityWithMetaFields, EntityWithBudget
|
||||
*/
|
||||
private $email;
|
||||
/**
|
||||
* @var string
|
||||
* @var string|null
|
||||
*
|
||||
* @Serializer\Expose()
|
||||
* @Serializer\Groups({"Customer_Entity"})
|
||||
|
||||
Reference in New Issue
Block a user