mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-29 21:08:13 +02:00
25 lines
392 B
PHP
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;
|
|
}
|
|
}
|
|
|