2018-09-06 12:58:36 +02:00
|
|
|
<?php
|
2018-09-06 13:52:34 +02:00
|
|
|
namespace App\Entity\Attribut;
|
2018-09-06 12:58:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @author kevinfrantz
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
interface IdAttributInterface
|
|
|
|
{
|
|
|
|
public function setId(int $id): void;
|
|
|
|
|
|
|
|
public function getId(): int;
|
|
|
|
}
|
|
|
|
|