mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-12 23:56:29 +03:00
14 lines
267 B
PHP
14 lines
267 B
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Maps_red\TicketingBundle\Entity\TicketComment as BaseTicketComment;
|
|
|
|
/**
|
|
* @ORM\Entity(repositoryClass="App\Repository\TicketCommentRepository")
|
|
*/
|
|
class TicketComment extends BaseTicketComment
|
|
{
|
|
}
|