mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-18 16:16:02 +02:00
Refactored\moved Attribut folder
This commit is contained in:
24
application/symfony/src/Attribut/SlugAttributInterface.php
Normal file
24
application/symfony/src/Attribut/SlugAttributInterface.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Attribut;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
interface SlugAttributInterface
|
||||
{
|
||||
/**
|
||||
* @param string $slug
|
||||
*/
|
||||
public function setSlug(string $slug): void;
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getSlug(): string;
|
||||
|
||||
/**
|
||||
* @return bool Checks if a slug is set
|
||||
*/
|
||||
public function hasSlug(): bool;
|
||||
}
|
Reference in New Issue
Block a user