15 lines
335 B
PHP
15 lines
335 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace App\User;
|
|
|
|
use App\User\Application\UserApplicationService;
|
|
|
|
/**
|
|
* Pont de compatibilité : l'implémentation métier principale vit désormais dans
|
|
* App\User\Application\UserApplicationService.
|
|
*/
|
|
final class UserService extends UserApplicationService implements UserServiceInterface
|
|
{
|
|
}
|