<?php

namespace App\Repository;

use App\Entity\HomeTopItem;
use App\Repository\HomeItemRepository;
use Doctrine\Persistence\ManagerRegistry;


// NOT USED ANYMORE


/**
 * @method HomeTopItem|null find($id, $lockMode = null, $lockVersion = null)
 * @method HomeTopItem|null findOneBy(array $criteria, array $orderBy = null)
 * @method HomeTopItem[]    findAll()
 * @method HomeTopItem[]    findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
 */
class HomeTopItemRepository extends HomeItemRepository
{
	public function __construct(ManagerRegistry $registry)
	{
		parent::__construct($registry, HomeTopItem::class);
	}
}
