for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Modules\Posts\Persistence\Doctrine\Repository;
use App\Infrastructure\Doctrine\Repository\DoctrineRepository;
class DoctrinePostsRepository extends DoctrineRepository
{
/**
* @return string
*/
protected function getManagerName(): string
return "posts";
}