YGGtracker/src/Repository/ArticleTorrentsRepository.php

24 lines
762 B
PHP
Raw Normal View History

2023-10-10 14:43:44 +03:00
<?php
namespace App\Repository;
use App\Entity\ArticleTorrents;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @extends ServiceEntityRepository<ArticleTorrents>
*
* @method ArticleTorrents|null find($id, $lockMode = null, $lockVersion = null)
* @method ArticleTorrents|null findOneBy(array $criteria, array $orderBy = null)
* @method ArticleTorrents[] findAll()
* @method ArticleTorrents[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class ArticleTorrentsRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, ArticleTorrents::class);
}
}