<?php
namespace App\Repository\Chat;
use App\Entity\Chat\Chat;
use EWZ\SymfonyAdminBundle\Repository\AbstractRepository;
class ChatRepository extends AbstractRepository
{
/** @var string */
protected $className = Chat::class;
}