infinito/application/symfony/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-10-03 16:14:15 +02:00
namespace App\Entity\Attribut;
2018-09-14 14:12:43 +02:00
/**
* @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;
}