forked from cleverage/processuibundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcessScheduleRepository.php
34 lines (29 loc) · 1.02 KB
/
ProcessScheduleRepository.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
declare(strict_types=1);
/*
* This file is part of the CleverAge/UiProcessBundle package.
*
* Copyright (c) Clever-Age
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace CleverAge\UiProcessBundle\Repository;
use CleverAge\UiProcessBundle\Entity\ProcessSchedule;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\EntityRepository;
/**
* @extends EntityRepository<ProcessSchedule>
*
* @method ProcessSchedule|null find($id, $lockMode = null, $lockVersion = null)
* @method ProcessSchedule|null findOneBy(mixed[] $criteria, string[] $orderBy = null)
* @method ProcessSchedule[] findAll()
* @method ProcessSchedule[] findBy(mixed[] $criteria, string[] $orderBy = null, $limit = null, $offset = null)
*/
class ProcessScheduleRepository extends EntityRepository
{
public function __construct(EntityManagerInterface $em)
{
parent::__construct($em, $em->getClassMetadata(ProcessSchedule::class));
}
}