<?php
namespace Alura\Doctrine\Entity;
/**
- @Entity */
class ALuno {
/**
* @Id
* @GeneratedValue
* Column(type="integer")
*/
private $id;
/**
* Column(type="string")
*/
private $nome;
public function getId() {
return $this->id;
}
public function getNome($id) {
return $this->nome;
}
public function setNome($nome) {
$this->nome = $nome;
return $this;
}
}