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