Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }