Spaces:
No application file
No application file
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'; | |
} | |
} | |