File tree Expand file tree Collapse file tree 3 files changed +20
-45
lines changed Expand file tree Collapse file tree 3 files changed +20
-45
lines changed Original file line number Diff line number Diff line change 22
33namespace App \Entity ;
44
5- use App \Repository \ProcessStepRepository ;
5+ use App \Repository \ProcessRepository ;
66use Doctrine \ORM \Mapping as ORM ;
77
8- #[ORM \Entity(repositoryClass: ProcessStepRepository ::class)]
8+ #[ORM \Entity(repositoryClass: ProcessRepository ::class)]
99#[ORM \Table(name: 'rpa_process_overview_process ' )]
1010class Process
1111{
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace App \Repository ;
4+
5+ use App \Entity \Process ;
6+ use Doctrine \Bundle \DoctrineBundle \Repository \ServiceEntityRepository ;
7+ use Doctrine \Persistence \ManagerRegistry ;
8+
9+ /**
10+ * @extends ServiceEntityRepository<Process>
11+ */
12+ class ProcessRepository extends ServiceEntityRepository
13+ {
14+ public function __construct (ManagerRegistry $ registry )
15+ {
16+ parent ::__construct ($ registry , Process::class);
17+ }
18+ }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments