I have another quick question ..
How do I configure it to use Doctrine's annotations?
Here is an example ..
namespace ....
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="user")
*/
class User implements UserInterface {
....
}
I'm not sure I have it configured to use it .. How do I go about
making this work?
Thanks
- Draco
....
At the moment all it does is autocompleting annotation classes in the
docBlock and injecting
the proper use statement in the file.
regards
-robert
I got it working .. It wasn't recognizing Doctrine annotations or any
Symfony annotations ..
So, I created a new project with vendors,
copied my source code into 'src',
changed the deps file to include other vendors extensions and
ran bin/vendors,
then added them back into AppKernel and autoload..
and now everything works.
Thanks for the great software..
Draco