mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 22:53:49 +00:00
location: fix code style with phpstan
This commit is contained in:
@@ -25,15 +25,16 @@ use Symfony\Component\Serializer\Annotation\DiscriminatorMap;
|
||||
*/
|
||||
class LocationType
|
||||
{
|
||||
public const DEFAULT_FOR_3PARTY = 'thirdparty';
|
||||
|
||||
public const DEFAULT_FOR_PERSON = 'person';
|
||||
|
||||
public const STATUS_NEVER = 'never';
|
||||
|
||||
public const STATUS_OPTIONAL = 'optional';
|
||||
|
||||
public const STATUS_REQUIRED = 'required';
|
||||
|
||||
public const DEFAULT_FOR_PERSON = 'person';
|
||||
public const DEFAULT_FOR_3PARTY = 'thirdparty';
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="boolean", nullable=true)
|
||||
* @Serializer\Groups({"read"})
|
||||
@@ -58,6 +59,12 @@ class LocationType
|
||||
*/
|
||||
private string $contactData = self::STATUS_OPTIONAL;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="string", nullable=true, length=32, unique=true)
|
||||
* @Serializer\Groups({"read"})
|
||||
*/
|
||||
private ?string $defaultFor = null;
|
||||
|
||||
/**
|
||||
* @ORM\Id
|
||||
* @ORM\GeneratedValue
|
||||
@@ -72,13 +79,6 @@ class LocationType
|
||||
*/
|
||||
private array $title = [];
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="string", nullable=true, length=32, unique=true)
|
||||
* @Serializer\Groups({"read"})
|
||||
*/
|
||||
private ?string $defaultFor = null;
|
||||
|
||||
|
||||
public function getActive(): ?bool
|
||||
{
|
||||
return $this->active;
|
||||
@@ -99,6 +99,11 @@ class LocationType
|
||||
return $this->contactData;
|
||||
}
|
||||
|
||||
public function getDefaultFor(): ?string
|
||||
{
|
||||
return $this->defaultFor;
|
||||
}
|
||||
|
||||
public function getId(): ?int
|
||||
{
|
||||
return $this->id;
|
||||
@@ -137,22 +142,17 @@ class LocationType
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function setTitle(array $title): self
|
||||
{
|
||||
$this->title = $title;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getDefaultFor(): ?string
|
||||
{
|
||||
return $this->defaultFor;
|
||||
}
|
||||
|
||||
public function setDefaultFor(string $defaultFor): self
|
||||
{
|
||||
$this->defaultFor = $defaultFor;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function setTitle(array $title): self
|
||||
{
|
||||
$this->title = $title;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user