infinito/application/symfony/src/Attribut/NameAttribut.php
2019-01-20 10:41:58 +01:00

25 lines
311 B
PHP

<?php
namespace App\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;
}
}