I get the following exception when creating an object using symfony2 CRUD:
[ReflectionException]
Class App\CoransBundle\Entity\Coran does not exist
What may be the problem?
I get the following exception when creating an object using symfony2 CRUD:
[ReflectionException]
Class App\CoransBundle\Entity\Coran does not exist
What may be the problem?
The error message is very precise on whats wrong isn't it?
I guess you have a typo in your namespace definition of your Coran class. It should look like this:
namespace App\CoransBundle\Entity;