mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-11 15:16:55 +03:00
22 lines
728 B
PHP
22 lines
728 B
PHP
<?php
|
|
|
|
namespace App\Repository;
|
|
|
|
use App\Entity\TicketComment;
|
|
use Symfony\Bridge\Doctrine\RegistryInterface;
|
|
use Maps_red\TicketingBundle\Repository\TicketCommentRepository as BaseTicketCommentRepository;
|
|
|
|
/**
|
|
* @method TicketComment|null find($id, $lockMode = null, $lockVersion = null)
|
|
* @method TicketComment|null findOneBy(array $criteria, array $orderBy = null)
|
|
* @method TicketComment[] findAll()
|
|
* @method TicketComment[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
|
|
*/
|
|
class TicketCommentRepository extends BaseTicketCommentRepository
|
|
{
|
|
public function __construct(RegistryInterface $registry)
|
|
{
|
|
parent::__construct($registry, TicketComment::class);
|
|
}
|
|
}
|