for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Silverback API Components Bundle Project
*
* (c) Daniel West <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Silverback\ApiComponentsBundle\Repository\Core;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
use Silverback\ApiComponentsBundle\Entity\Core\AbstractPageData;
/**
* @author Daniel West <[email protected]>
* @method AbstractPageData|null find($id, $lockMode = null, $lockVersion = null)
* @method AbstractPageData|null findOneBy(array $criteria, array $orderBy = null)
* @method AbstractPageData[] findAll()
* @method AbstractPageData[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
class AbstractPageDataRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
parent::__construct($registry, AbstractPageData::class);
}