Class UCI\CubanaBundle\Entity\Vuelos does not exist
500 Internal Server Error - ReflectionException
Controlador:
Código PHP:
public function listadoAction() {
$em = $this->getDoctrine()->getEntityManager();
$vuelos = $em->getRepository('CubanaBundle:Vuelo')->findAll(); // Esta es la línea que provoca la excepción
return $this->render("CubanaBundle:Vuelo:listado.html.twig", array(
'vuelos' => $vuelos
));
}
Ya no sé donde más buscar, Saludos...