implement online history

This commit is contained in:
ghost 2024-01-06 22:07:18 +02:00
parent 2071796a07
commit 272d219066
8 changed files with 495 additions and 10 deletions

View file

@ -0,0 +1,23 @@
<?php
namespace App\Repository;
use App\Entity\Online;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @extends ServiceEntityRepository<Online>
*
* @method Online|null find($id, $lockMode = null, $lockVersion = null)
* @method Online|null findOneBy(array $criteria, array $orderBy = null)
* @method Online[] findAll()
* @method Online[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class OnlineRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, Online::class);
}
}