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

14 lines
188 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
*/
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;
}