mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
11 lines
164 B
PHP
11 lines
164 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Entity\Attribut;
|
||
|
|
||
|
interface SlugAttributInterface
|
||
|
{
|
||
|
public function setSlug(string $slug): void;
|
||
|
|
||
|
public function getSlug(): string;
|
||
|
}
|