17 lines
428 B
PHP
17 lines
428 B
PHP
<?php
|
|
|
|
namespace App\Repository;
|
|
|
|
use App\Entity\CoastalPoint;
|
|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
|
use Doctrine\Persistence\ManagerRegistry;
|
|
|
|
/** @extends ServiceEntityRepository<CoastalPoint> */
|
|
class CoastalPointRepository extends ServiceEntityRepository
|
|
{
|
|
public function __construct(ManagerRegistry $registry)
|
|
{
|
|
parent::__construct($registry, CoastalPoint::class);
|
|
}
|
|
}
|