All checks were successful
Auto Tag Develop / tag (push) Successful in 6s
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | | | ## Description de la PR ## Modification du .env ## Check list - [x] Pas de régression - [x] TU/TI/TF rédigée - [x] TU/TI/TF OK - [ ] CHANGELOG modifié Co-authored-by: Matthieu <mtholot19@gmail.com> Reviewed-on: #8 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
21 lines
532 B
PHP
21 lines
532 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Shared\Domain\Contract;
|
|
|
|
/**
|
|
* Interface minimale exposant ce que le noyau (Shared/Core) doit connaitre
|
|
* d'un Site, sans creer de couplage direct vers le module Sites.
|
|
*
|
|
* Implemente par App\Module\Sites\Domain\Entity\Site.
|
|
* Utilisee comme type-hint dans SiteAwareInterface, User et toute entite
|
|
* Shared/Core qui manipule un site sans avoir besoin des details metier.
|
|
*/
|
|
interface SiteInterface
|
|
{
|
|
public function getId(): ?int;
|
|
|
|
public function getName(): ?string;
|
|
}
|