apply rector rules

This commit is contained in:
2023-07-28 02:40:02 +02:00
parent 157cdf6dfc
commit f570fe92a5
112 changed files with 252 additions and 562 deletions

View File

@@ -29,12 +29,12 @@ class CancelReason
/**
* @ORM\Column(type="boolean")
*/
private $active;
private ?bool $active = null;
/**
* @ORM\Column(type="string", length=255)
*/
private $canceledBy;
private ?string $canceledBy = null;
/**
* @ORM\Id
@@ -46,7 +46,7 @@ class CancelReason
/**
* @ORM\Column(type="json")
*/
private $name = [];
private array $name = [];
public function getActive(): ?bool
{