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

25 lines
311 B
PHP
Raw Normal View History

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