Leuchtfeuer/auth0-for-typo3

View on GitHub
Classes/Domain/Repository/UserGroup/FrontendUserGroupRepository.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/*
 * This file is part of the "Auth0" extension for TYPO3 CMS.
 *
 * For the full copyright and license information, please read the
 * LICENSE.txt file that was distributed with this source code.
 *
 * Florian Wessels <f.wessels@Leuchtfeuer.com>, Leuchtfeuer Digital Marketing
 */

namespace Leuchtfeuer\Auth0\Domain\Repository\UserGroup;

class FrontendUserGroupRepository extends AbstractUserGroupRepository
{
    const TABLE_NAME = 'fe_groups';

    protected function setTableName(): void
    {
        $this->tableName = self::TABLE_NAME;
    }
}