Files
infinito/application/src/Entity/Attribut/PasswordAttribut.php
2018-09-06 17:47:47 +02:00

25 lines
392 B
PHP

<?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;
}
}