remove manual torrent/page relations

This commit is contained in:
ghost 2023-10-12 02:33:43 +03:00
parent 995d4bde54
commit f56f07ac29
4 changed files with 7 additions and 158 deletions

View file

@ -1,23 +0,0 @@
<?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);
}
}