19 lines
422 B
PHP
19 lines
422 B
PHP
<?php
|
|
|
|
namespace App\Game\Repository;
|
|
|
|
use App\Game\Entity\Session;
|
|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
|
use Doctrine\Persistence\ManagerRegistry;
|
|
|
|
/**
|
|
* @extends ServiceEntityRepository<Session>
|
|
*/
|
|
class SessionRepository extends ServiceEntityRepository
|
|
{
|
|
public function __construct(ManagerRegistry $registry)
|
|
{
|
|
parent::__construct($registry, Session::class);
|
|
}
|
|
}
|