Commit 003137a6079252222bebc70742e6726cb227561a

Authored by Wilmer Ramones
1 parent 9ae944b15c
Exists in master

añadido funcion toString a la entidad de Eje

Showing 1 changed file with 4 additions and 0 deletions   Show diff stats
src/AppBundle/Entity/Eje.php
... ... @@ -100,4 +100,8 @@ class Eje
100 100 {
101 101 return $this->id;
102 102 }
  103 +
  104 + public function __toString() {
  105 + return $this->getNombre();
  106 + }
103 107 }
104 108 \ No newline at end of file
... ...