Refatoring : Working state
This commit is contained in:
@@ -1,12 +0,0 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\User;
|
||||
|
||||
/**
|
||||
* Pont de compatibilité : le contrôleur HTTP principal vit désormais dans
|
||||
* App\User\Http\UserController.
|
||||
*/
|
||||
final class UserController extends Http\UserController
|
||||
{
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\User;
|
||||
|
||||
use App\User\Infrastructure\PdoUserRepository;
|
||||
|
||||
/**
|
||||
* Pont de compatibilité : l'implémentation PDO principale vit désormais dans
|
||||
* App\User\Infrastructure\PdoUserRepository.
|
||||
*/
|
||||
final class UserRepository extends PdoUserRepository implements UserRepositoryInterface
|
||||
{
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
<?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
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user