Deleted unused trait

This commit is contained in:
Kevin Frantz 2018-11-04 12:57:53 +01:00
parent 45a1fc6678
commit 7d8a15e8ae

View File

@ -1,24 +0,0 @@
<?php
namespace App\Entity\Attribut;
/**
* @author kevinfrantz
*/
trait PasswordAttribut
{
/**
* @ORM\Column(type="string", length=64)
*/
protected $password;
public function getPassword(): ?string
{
return $this->password;
}
public function setPassword(string $password): void
{
$this->password = $password;
}
}