src/Repository/Chat/ChatRepository.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Repository\Chat;
  3. use App\Entity\Chat\Chat;
  4. use EWZ\SymfonyAdminBundle\Repository\AbstractRepository;
  5. class ChatRepository extends AbstractRepository
  6. {
  7.     /** @var string */
  8.     protected $className Chat::class;
  9. }