infinito/application/src/Entity/Attribut/NameAttribut.php

28 lines
353 B
PHP
Raw Normal View History

2018-09-14 14:12:43 +02:00
<?php
namespace App\Entity\Attribut;
/**
*
* @author kevinfrantz
*
*/
trait NameAttribut {
/**
*
* @var string
*/
protected $name;
public function setName(string $name): void
{
$this->name = $name;
}
public function getName(): string
{
return $this->name;
}
}