Revert previous commit.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 28 Jun 2018 08:07:31 +0000 (10:07 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 28 Jun 2018 08:07:31 +0000 (10:07 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
src/Entity/Person.php

index 7897cfb4454c1b40dd18840f57d1bf942eeeb8e6..91ffc15938e668db97b2eddcdc2cacfa40252e34 100644 (file)
@@ -21,37 +21,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;