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