X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2FEntity%2FPerson.php;h=d06f5756f9ce2a8ce1b2e981ae1b01e0e92d397c;hb=84fd6c7fa765874e478ad7f92e356e88b3ff962c;hp=91ffc15938e668db97b2eddcdc2cacfa40252e34;hpb=d70022a0a4329a97ee2f996678801d824dbe818c;p=Project_proches_de_moi-server.git diff --git a/src/Entity/Person.php b/src/Entity/Person.php index 91ffc15..d06f575 100644 --- a/src/Entity/Person.php +++ b/src/Entity/Person.php @@ -3,17 +3,13 @@ namespace App\Entity; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\ORM\Mapping as ORM; -use JMS\Serializer\Annotation\ExclusionPolicy; -use JMS\Serializer\Annotation\Expose; +use JMS\Serializer\Annotation as Serializer; /** * @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") + * @Serializer\ExclusionPolicy("all") */ class Person { @@ -21,21 +17,25 @@ class Person * @ORM\Id * @ORM\Column(type="bigint") * @ORM\GeneratedValue(strategy="AUTO") + * @Serializer\Expose */ protected $id; /** * @ORM\Column(type="string") + * @Serializer\Expose */ protected $firstname; /** * @ORM\Column(type="string") + * @Serializer\Expose */ protected $lastname; /** * @ORM\Column(type="string", unique=true) + * @Serializer\Expose */ protected $email; @@ -46,6 +46,7 @@ class Person /** * @ORM\Column(type="boolean", options={"default":false}) + * @Serializer\Expose */ protected $online;