Symfony – Erreur could not be converted to string

juin 9, 2016 9:48 Publié par Laissez vos commentaires

Bonjour à tous,

La création d’un objet de type form lié à une entité peut retourner l’erreur could not be converted to string. Il suffit pour y remédier d’implémenter la méthode __toString dans votre entité :

Exemple :


/**
* toString
* @return string
*/
public function __toString()

return $this->getMail();

Classés dans :

Cet article a été écrit par admin

Laisser un commentaire