X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2FEntity%2FPerson.php;h=d401cc32432f16311220f818c8a775440b4729dc;hb=4c4feb3e3193703f6cfa44ca711092a8acb38329;hp=7897cfb4454c1b40dd18840f57d1bf942eeeb8e6;hpb=c3bce7b6e26c3697240cfc1bdb7c0789f35b814c;p=Project_proches_de_moi-server.git diff --git a/src/Entity/Person.php b/src/Entity/Person.php index 7897cfb..d401cc3 100644 --- a/src/Entity/Person.php +++ b/src/Entity/Person.php @@ -3,17 +3,11 @@ namespace App\Entity; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\ORM\Mapping as ORM; -use JMS\Serializer\Annotation\ExclusionPolicy; -use JMS\Serializer\Annotation\Expose; /** * @ORM\Entity() * @ORM\Table(name="Person", indexes={@ORM\Index(name="authentification_idx", columns={"email", "password"}), * @ORM\Index(name="search_idx", columns={"firstname", "lastname", "email"})}); - * The following annotations tells the serializer to skip all properties which - * have not marked with @Expose. - * - * @ExclusionPolicy("all") */ class Person { @@ -21,37 +15,31 @@ class Person * @ORM\Id * @ORM\Column(type="bigint") * @ORM\GeneratedValue(strategy="AUTO") - * @Expose */ protected $id; /** * @ORM\Column(type="string") - * @Expose */ protected $firstname; /** * @ORM\Column(type="string") - * @Expose */ protected $lastname; /** * @ORM\Column(type="string", unique=true) - * @Expose */ protected $email; /** * @ORM\Column(type="string") - * @Expose */ protected $password; /** * @ORM\Column(type="boolean", options={"default":false}) - * @Expose */ protected $online;