You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
551B

  1. <?php
  2. namespace App\Controller\Admin\Thematic;
  3. use App\Entity\Thematic\Thematic;
  4. use Lc\PietroBundle\Controller\Thematic\ThematicAdminController as PietroThematicAdminController;
  5. use Lc\SovBundle\Repository\RepositoryQueryInterface;
  6. class ThematicAdminController extends PietroThematicAdminController
  7. {
  8. public static function getEntityFqcn(): string
  9. {
  10. return Thematic::class;
  11. }
  12. public function getRepositoryQuery(): RepositoryQueryInterface
  13. {
  14. return $this->getThematicContainer()->getRepositoryQuery();
  15. }
  16. }