diff --git a/.gitignore b/.gitignore index 4257fe1..41cebe9 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,9 @@ /bin/ /composer.phar /nbproject/private/ + +# Linux +.* +!.gitignore +!.htaccess +*~ diff --git a/src/AppBundle/Entity/TutoresAscenso.php b/src/AppBundle/Entity/TutoresAscenso.php new file mode 100644 index 0000000..1f1a9ca --- /dev/null +++ b/src/AppBundle/Entity/TutoresAscenso.php @@ -0,0 +1,84 @@ +nombre = $nombre; + + return $this; + } + + /** + * Get nombre + * + * @return string + */ + public function getNombre() + { + return $this->nombre; + } + + /** + * Get id + * + * @return integer + */ + public function getId() + { + return $this->id; + } + + /** + * Get nombre + * + * @return string + */ + public function __toString() + { + return $this->nombre; + } + + +}