1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Updated @Index lower i to Upper i

This fixes the error:
[Semantical Error] The annotation "@Doctrine\ORM\Mapping\index"
This commit is contained in:
jorns 2012-11-16 11:21:06 +01:00
parent 2edccbfbc8
commit 072a65bd26

View file

@ -351,7 +351,7 @@ Example:
<?php
/**
* @Entity
* @Table(name="ecommerce_products",indexes={@index(name="search_idx", columns={"name", "email"})})
* @Table(name="ecommerce_products",indexes={@Index(name="search_idx", columns={"name", "email"})})
*/
class ECommerceProduct
{