Refatoring : Working state

This commit is contained in:
julien
2026-03-16 14:11:49 +01:00
parent 073e23a9f8
commit d0761ff010
21 changed files with 1262 additions and 1301 deletions

View File

@@ -0,0 +1,14 @@
<?php
declare(strict_types=1);
namespace App\Category\Domain;
use App\Shared\Util\SlugHelper;
final class CategorySlugGenerator
{
public function generate(string $name): string
{
return SlugHelper::generate($name);
}
}