Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
trash
/
vhost_www.rec-app.app_1716798588
/
htdocs
/
src
/
Repository
/
//srv/data/trash/vhost_www.rec-app.app_1716798588/htdocs/src/Repository/VideoRepository.php
<?php namespace App\Repository; use App\Entity\Video; use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; use Doctrine\Persistence\ManagerRegistry; /** * @extends ServiceEntityRepository<Video> * * @method Video|null find($id, $lockMode = null, $lockVersion = null) * @method Video|null findOneBy(array $criteria, array $orderBy = null) * @method Video[] findAll() * @method Video[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) */ class VideoRepository extends ServiceEntityRepository { public function __construct(ManagerRegistry $registry) { parent::__construct($registry, Video::class); } }