CSfixer changes

This commit is contained in:
2022-01-25 16:41:44 +01:00
parent 1a5e8b9d7b
commit ab5f9923a6
9 changed files with 269 additions and 263 deletions

View File

@@ -28,16 +28,16 @@ class PersonResourceKind
*/
private int $id;
/**
* @ORM\Column(type="json", length=255)
*/
private array $title;
/**
* @ORM\Column(type="boolean")
*/
private bool $isActive = true;
/**
* @ORM\Column(type="json", length=255)
*/
private array $title;
public function getId(): ?int
{
return $this->id;
@@ -53,17 +53,17 @@ class PersonResourceKind
return $this->title;
}
public function setTitle(array $title): self
{
$this->title = $title;
return $this;
}
public function setIsActive(bool $isActive): self
{
$this->isActive = $isActive;
return $this;
}
public function setTitle(array $title): self
{
$this->title = $title;
return $this;
}
}