Updated rechten voor speler. Settings toegevoegd en onderdelen voor game1 toegevoegd.

This commit is contained in:
Frank
2026-01-05 17:07:32 +01:00
parent 0543ed43b9
commit 376ed3f592
29 changed files with 531 additions and 17 deletions
@@ -0,0 +1,18 @@
<?php
namespace App\Game\Repository;
use App\Game\Entity\GameSetting;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @extends ServiceEntityRepository<GameSetting>
*/
class GameSettingRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, GameSetting::class);
}
}