mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
feat: start ovh API implement
This commit is contained in:
21
src/Repository/OVHConnectorRepository.php
Normal file
21
src/Repository/OVHConnectorRepository.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Repository;
|
||||
|
||||
use App\Entity\OVHConnector;
|
||||
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
||||
use Doctrine\Persistence\ManagerRegistry;
|
||||
|
||||
/**
|
||||
* @method OVHConnector|null find($id, $lockMode = null, $lockVersion = null)
|
||||
* @method OVHConnector|null findOneBy(array $criteria, array $orderBy = null)
|
||||
* @method OVHConnector[] findAll()
|
||||
* @method OVHConnector[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
|
||||
*/
|
||||
class OVHConnectorRepository extends ServiceEntityRepository
|
||||
{
|
||||
public function __construct(ManagerRegistry $registry)
|
||||
{
|
||||
parent::__construct($registry, OVHConnector::class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user