From 5386818a1ddda3e8e8f637b91aa4dcde64e604e7 Mon Sep 17 00:00:00 2001 From: Ruben Date: Fri, 16 Jun 2017 12:52:41 +0200 Subject: [PATCH] Fix annotations --- src/Models/Hit.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Models/Hit.php b/src/Models/Hit.php index ca42c82..dc0cb7e 100644 --- a/src/Models/Hit.php +++ b/src/Models/Hit.php @@ -10,13 +10,13 @@ use Doctrine\Common\Collections\ArrayCollection; * Hit of a target and the facial parameters at the moment of the hit * * @ORM\Table(name="hits", indexes={ - * @Index(name="imgAnger", columns={"hasImage", "anger"}), - * @Index(name="imgContempt", columns={"hasImage", "contempt"}), - * @Index(name="imgDisgust", columns={"hasImage", "disgust"}), - * @Index(name="imgFear", columns={"hasImage", "fear"}), - * @Index(name="imgJoy", columns={"hasImage", "joy"}), - * @Index(name="imgSadness", columns={"hasImage", "sadness"}), - * @Index(name="imgSurprise", columns={"hasImage", "surprise"}), + * @ORM\Index(name="imgAnger", columns={"hasImage", "anger"}), + * @ORM\Index(name="imgContempt", columns={"hasImage", "contempt"}), + * @ORM\Index(name="imgDisgust", columns={"hasImage", "disgust"}), + * @ORM\Index(name="imgFear", columns={"hasImage", "fear"}), + * @ORM\Index(name="imgJoy", columns={"hasImage", "joy"}), + * @ORM\Index(name="imgSadness", columns={"hasImage", "sadness"}), + * @ORM\Index(name="imgSurprise", columns={"hasImage", "surprise"}), * }) * @ORM\Entity * @ORM\Entity(repositoryClass="EmotionHero\Models\HitRepository")