for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* This file is part of the mailserver-admin package.
* (c) Jeffrey Boehm <https://github.com/jeboehm/mailserver-admin>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Repository;
use App\Entity\Domain;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
* @method Domain|null find($id, $lockMode = null, $lockVersion = null)
* @method Domain|null findOneBy(array $criteria, array $orderBy = null)
* @method Domain[] findAll()
* @method Domain[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
class DomainRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
parent::__construct($registry, Domain::class);
}