19 lines
328 B
PHP
Executable File
19 lines
328 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace MauticPlugin\GrapesJsBuilderBundle\Entity;
|
|
|
|
use Mautic\CoreBundle\Entity\CommonRepository;
|
|
|
|
/**
|
|
* @extends CommonRepository<GrapesJsBuilder>
|
|
*/
|
|
class GrapesJsBuilderRepository extends CommonRepository
|
|
{
|
|
public function getTableAlias(): string
|
|
{
|
|
return 'gjb';
|
|
}
|
|
}
|