Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

21 Zeilen
578B

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