mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 06:47:31 +01:00
16 lines
211 B
PHP
16 lines
211 B
PHP
<?php
|
|
namespace App\Entity\Attribut;
|
|
|
|
/**
|
|
*
|
|
* @author kevinfrantz
|
|
*
|
|
*/
|
|
interface NameAttributInterface
|
|
{
|
|
public function setName(string $name):void;
|
|
|
|
public function getName():string;
|
|
}
|
|
|