mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-28 18:43:49 +00:00
apply rector rules
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user