|
|
@@ -144,10 +144,6 @@ class Person implements UserInterface, PasswordAuthenticatedUserInterface
|
|
|
#[ORM\OneToMany(targetEntity: AllowedIp::class, mappedBy: 'person', cascade: ['persist'], orphanRemoval: true)]
|
|
|
private Collection $allowedIps;
|
|
|
|
|
|
- /** @var array<string, string> */
|
|
|
- #[ORM\Column(type: 'json', nullable: true)]
|
|
|
- private array $confidentiality = [];
|
|
|
-
|
|
|
#[Pure]
|
|
|
public function __construct()
|
|
|
{
|
|
|
@@ -712,24 +708,4 @@ class Person implements UserInterface, PasswordAuthenticatedUserInterface
|
|
|
|
|
|
return $this;
|
|
|
}
|
|
|
-
|
|
|
- /**
|
|
|
- * @return array<string, string>
|
|
|
- */
|
|
|
- public function getConfidentiality(): array
|
|
|
- {
|
|
|
- return $this->confidentiality;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @param array<string, string> $confidentiality
|
|
|
- *
|
|
|
- * @return $this
|
|
|
- */
|
|
|
- public function setConfidentiality(array $confidentiality): self
|
|
|
- {
|
|
|
- $this->confidentiality = $confidentiality;
|
|
|
-
|
|
|
- return $this;
|
|
|
- }
|
|
|
}
|