mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-27 14:04:01 +01:00
16 lines
199 B
PHP
16 lines
199 B
PHP
|
<?php
|
||
|
namespace App\Entity\attribut;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
*
|
||
|
*/
|
||
|
interface IdAttributInterface
|
||
|
{
|
||
|
public function setId(int $id): void;
|
||
|
|
||
|
public function getId(): int;
|
||
|
}
|
||
|
|