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

14 lines
195 B
PHP
Raw Normal View History

2018-09-14 14:12:43 +02:00
<?php
2018-09-14 14:39:47 +02:00
2018-09-14 14:12:43 +02:00
namespace App\Entity\Attribut;
/**
* @author kevinfrantz
*/
interface NameAttributInterface
{
2018-09-14 14:39:47 +02:00
public function setName(string $name): void;
2018-09-14 14:12:43 +02:00
2018-09-14 14:39:47 +02:00
public function getName(): string;
}