Fix annotations

This commit is contained in:
Ruben 2017-06-16 12:52:41 +02:00
parent 88b154826c
commit 5386818a1d
1 changed files with 7 additions and 7 deletions

View File

@ -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")