<?php declare(strict_types=1);
namespace Komma\KMS\Core;
interface HasSlugInterface
{
/**
* This function suggests a slug that can be used in an url.
* A route service will use this if possible, or if not possible
* that service must modify it so it does not conflict with other routes.
*
* @return string
*/
public function suggestSlug(): string;
}