26 lines
556 B
PHP
26 lines
556 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repository;
|
|
|
|
use App\Entity\Workflow;
|
|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
|
use Doctrine\Persistence\ManagerRegistry;
|
|
|
|
/**
|
|
* @extends ServiceEntityRepository<Workflow>
|
|
*/
|
|
class WorkflowRepository extends ServiceEntityRepository
|
|
{
|
|
public function __construct(ManagerRegistry $registry)
|
|
{
|
|
parent::__construct($registry, Workflow::class);
|
|
}
|
|
|
|
public function findDefault(): ?Workflow
|
|
{
|
|
return $this->findOneBy(['isDefault' => true]);
|
|
}
|
|
}
|