ogcore/src/Repository/SoftwareProfileRepository.php

19 lines
439 B
PHP

<?php
namespace App\Repository;
use App\Entity\SoftwareProfile;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @extends ServiceEntityRepository<SoftwareProfile>
*/
class SoftwareProfileRepository extends AbstractRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, SoftwareProfile::class);
}
}