From d70022a0a4329a97ee2f996678801d824dbe818c Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 28 Jun 2018 10:07:31 +0200 Subject: [PATCH] Revert previous commit. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/Entity/Person.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Entity/Person.php b/src/Entity/Person.php index 7897cfb..91ffc15 100644 --- a/src/Entity/Person.php +++ b/src/Entity/Person.php @@ -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; -- 2.34.1