diff --git a/src/Constants.php b/src/Constants.php index 051fa3f4..629dbb29 100644 --- a/src/Constants.php +++ b/src/Constants.php @@ -17,11 +17,11 @@ class Constants /** * The current release version */ - public const VERSION = '2.0.2'; + public const VERSION = '2.0.3'; /** * The current release: major * 10000 + minor * 100 + patch */ - public const VERSION_ID = 20002; + public const VERSION_ID = 20003; /** * The software name */ diff --git a/src/Entity/Customer.php b/src/Entity/Customer.php index f9d181f0..1cf56dcf 100644 --- a/src/Entity/Customer.php +++ b/src/Entity/Customer.php @@ -45,7 +45,7 @@ class Customer implements EntityWithMetaFields, EntityWithBudget #[Serializer\Expose] #[Serializer\Groups(['Default'])] #[Exporter\Expose(label: 'name')] - private ?string $name; + private ?string $name = null; #[ORM\Column(name: 'number', type: 'string', length: 50, nullable: true)] #[Assert\Length(max: 50)] #[Serializer\Expose]