Skip to content
This repository has been archived by the owner on Jun 26, 2024. It is now read-only.

Commit

Permalink
Fix incompatibility with current doctrine versions
Browse files Browse the repository at this point in the history
  • Loading branch information
werrolf committed Dec 2, 2021
1 parent 19527ad commit d499269
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Element/CoordinatesUtility.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@

namespace Mapbender\CoordinatesUtilityBundle\Element;

use Doctrine\Persistence\ManagerRegistry;
use Mapbender\Component\Element\AbstractElementService;
use Mapbender\Component\Element\TemplateView;
use Mapbender\CoreBundle\Component\ElementBase\ConfigMigrationInterface;
use Mapbender\CoreBundle\Entity\Element;
use Mapbender\CoreBundle\Entity\SRS;
use Symfony\Bridge\Doctrine\RegistryInterface;

class CoordinatesUtility extends AbstractElementService implements ConfigMigrationInterface
{
/** @var RegistryInterface */
/** @var ManagerRegistry */
protected $doctrineRegistry;

public function __construct(RegistryInterface $doctrineRegistry)
public function __construct(ManagerRegistry $doctrineRegistry)
{
$this->doctrineRegistry = $doctrineRegistry;
}
Expand Down

0 comments on commit d499269

Please sign in to comment.