*/ class WorkflowRepository extends ServiceEntityRepository { public function __construct(ManagerRegistry $registry) { parent::__construct($registry, Workflow::class); } public function findDefault(): ?Workflow { return $this->findOneBy(['isDefault' => true]); } }