Quellcode durchsuchen

fix post merge bug

Olivier Massot vor 7 Monaten
Ursprung
Commit
dd2e1d67e5
1 geänderte Dateien mit 0 neuen und 24 gelöschten Zeilen
  1. 0 24
      src/Entity/Person/Person.php

+ 0 - 24
src/Entity/Person/Person.php

@@ -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;
-    }
 }