From f8460ba2904eff723b450627d6ccad4007c15d8e Mon Sep 17 00:00:00 2001 From: Wilmer Date: Mon, 16 Jan 2017 10:13:25 -0400 Subject: [PATCH] actualizado el git ignore para los archivos temporales creados en linux --- .gitignore | 6 +++ src/AppBundle/Entity/TutoresAscenso.php | 84 +++++++++++++++++++++++++++++++++ 2 files changed, 90 insertions(+) create mode 100644 src/AppBundle/Entity/TutoresAscenso.php 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; + } + + +} -- 2.0.0