15 lines
328 B
PHP
15 lines
328 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Post;
|
|
|
|
use App\Post\Infrastructure\PdoPostRepository;
|
|
|
|
/**
|
|
* Pont de compatibilité : l'implémentation PDO principale vit désormais dans
|
|
* App\Post\Infrastructure\PdoPostRepository.
|
|
*/
|
|
final class PostRepository extends PdoPostRepository implements PostRepositoryInterface
|
|
{
|
|
}
|