Skip to content

Commit

Permalink
Minor: Fix psalm errors
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelFQC committed Feb 5, 2025
1 parent 9619d68 commit 1f06b5a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/CoreBundle/Repository/MessageTagRepository.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
<?php

declare(strict_types=1);

/* For licensing terms, see /license.txt */

declare(strict_types=1);

namespace Chamilo\CoreBundle\Repository;

use Chamilo\CoreBundle\Entity\MessageTag;
use Doctrine\ORM\EntityManagerInterface;
use Gedmo\Sortable\Entity\Repository\SortableRepository;

/**
* @template-extends SortableRepository<MessageTag>
*/
class MessageTagRepository extends SortableRepository
{
public function __construct(EntityManagerInterface $em)
Expand Down
3 changes: 3 additions & 0 deletions src/CoreBundle/Repository/ResourceLinkRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
use Doctrine\ORM\EntityManagerInterface;
use Gedmo\Sortable\Entity\Repository\SortableRepository;

/**
* @template-extends SortableRepository<ResourceLink>
*/
class ResourceLinkRepository extends SortableRepository
{
public function __construct(EntityManagerInterface $em)
Expand Down

0 comments on commit 1f06b5a

Please sign in to comment.