https://github.com/nelmio/alice/blob/master/README.md#multiple-references
group{1..10}:
members: @user{1..10}
this example is giving problem
Entity with Id @user_{1..2} and Class Eggs\CoreBundle\Entity\User not found
It is putting as it is. If i change it to @user_* or @user_1, this works fine, but above range is giving me problem.
Code:
user_{1..10}:
email (unique): email()
group_{1..10}:
user: @user_{1..10}
name: name of the group
user: @user_{1..10} <--- this line gives problem. (I have change business to user)