File tree 2 files changed +8
-2
lines changed
src/CoreBundle/Repository
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- declare (strict_types=1 );
4
-
5
3
/* For licensing terms, see /license.txt */
6
4
5
+ declare (strict_types=1 );
6
+
7
7
namespace Chamilo \CoreBundle \Repository ;
8
8
9
9
use Chamilo \CoreBundle \Entity \MessageTag ;
10
10
use Doctrine \ORM \EntityManagerInterface ;
11
11
use Gedmo \Sortable \Entity \Repository \SortableRepository ;
12
12
13
+ /**
14
+ * @template-extends SortableRepository<MessageTag>
15
+ */
13
16
class MessageTagRepository extends SortableRepository
14
17
{
15
18
public function __construct (EntityManagerInterface $ em )
Original file line number Diff line number Diff line change 16
16
use Doctrine \ORM \EntityManagerInterface ;
17
17
use Gedmo \Sortable \Entity \Repository \SortableRepository ;
18
18
19
+ /**
20
+ * @template-extends SortableRepository<ResourceLink>
21
+ */
19
22
class ResourceLinkRepository extends SortableRepository
20
23
{
21
24
public function __construct (EntityManagerInterface $ em )
You can’t perform that action at this time.
0 commit comments