update page form dependencies #19

This commit is contained in:
ghost 2023-10-06 04:12:14 +03:00
parent 8df29ef605
commit c0cc029350
22 changed files with 1049 additions and 102 deletions

View file

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