I\'ve been trying to call Entity Manager in a constructor:
Entity Manager
function __construct() { $this->getDoctrine()->getEntityManager(); ...
You have to add
use Doctrine\ORM\EntityManager;
in your controller