I try to set Symfony2 plugin so I can use annotations. I installed the plugin, PHPStorm restarted and the cache was invalidated.
And now, some code:
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
When I put @ORM\ and I hit Ctrl+Space I see No suggesions.
This doesn’t work? I set something wrong?


Mappingbyuse Doctrine\ORM\Mapping as ORM;?PHPStorm 8.xand pluginsSymfony2 PluginandPHP Annotations.