chore: complete update

This commit is contained in:
2025-07-17 16:24:20 +02:00
parent 899227b0a4
commit 64a7051137
1300 changed files with 85570 additions and 2756 deletions

View File

@@ -0,0 +1,32 @@
<?php
namespace App\Domain\Media;
use App\Framework\Database\EntityManager;
final readonly class ImageSlotRepository
{
public function __construct(
private EntityManager $entityManager
){}
public function getSlots(): array
{
return $this->entityManager->findAll(ImageSlot::class);
}
public function findBySlotName(string $slotName): ImageSlot
{
return $this->entityManager->findOneBy(ImageSlot::class, ['slot_name' => $slotName]);
}
public function findById(string $id): ImageSlot
{
return $this->entityManager->find(ImageSlot::class, $id);
}
public function save(ImageSlot $imageSlot): object
{
return $this->entityManager->save($imageSlot);
}
}