<?php

namespace App\Repository;

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


// NOT USED ANYMORE


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