We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What says the actual doc :
$builder->add('users', 'entity', array( 'class' => 'Acme\HelloBundle\Entity\User', ));
This kind of 'class' reference products an error : "Expected argument of type "object", "string" given"
The working way i found to refer to the class :
$builder->add('users', 'entity', array( 'class' => 'AcmeHelloBundle:User', ));
The text was updated successfully, but these errors were encountered:
Did you tried this?
Sorry, something went wrong.
Final 2.0 seems to fix it. I close it...
[reference] Using the entity alias name instead of fully-qualified na…
ce1df06
…me in entity choice - see #683
Yes, both are right, but actually, using the alias name is better, so I've updated the reference.
Thanks!
No branches or pull requests
What says the actual doc :
$builder->add('users', 'entity', array(
'class' => 'Acme\HelloBundle\Entity\User',
));
This kind of 'class' reference products an error : "Expected argument of type "object", "string" given"
The working way i found to refer to the class :
$builder->add('users', 'entity', array(
'class' => 'AcmeHelloBundle:User',
));
The text was updated successfully, but these errors were encountered: