Entity draft

This commit is contained in:
Kevin Frantz
2018-09-06 12:58:36 +02:00
parent 9520b09db0
commit 2a1f3bd264
12 changed files with 143 additions and 59 deletions

View File

@@ -9,15 +9,8 @@ use Symfony\Component\Security\Core\User\UserInterface;
* @ORM\Table(name="source_user")
* @ORM\Entity(repositoryClass="App\Repository\UserRepository")
*/
class User implements UserInterface, \Serializable
class User extends AbstractSource implements UserInterface, \Serializable
{
/**
* @ORM\Column(type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @ORM\Column(type="string", length=25, unique=true)
*/