Added name source draft

This commit is contained in:
Kevin Frantz
2018-09-14 14:12:43 +02:00
parent 5136cec81d
commit bfd5d9416e
7 changed files with 106 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Entity\Attribut;
/**
*
* @author kevinfrantz
*
*/
interface NameAttributInterface
{
public function setName(string $name):void;
public function getName():string;
}