1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-31 18:31:02 +00:00
wallabag/src/Repository/ConfigRepository.php

19 lines
424 B
PHP
Raw Normal View History

2015-02-16 21:28:49 +01:00
<?php
2024-02-19 01:30:12 +01:00
namespace Wallabag\Repository;
2015-02-16 21:28:49 +01:00
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
2024-02-19 01:30:12 +01:00
use Wallabag\Entity\Config;
2015-02-16 21:28:49 +01:00
2022-11-23 15:51:33 +01:00
/**
* @method Config|null findOneByUser(int $userId)
*/
class ConfigRepository extends ServiceEntityRepository
2015-02-16 21:28:49 +01:00
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, Config::class);
}
2015-02-16 21:28:49 +01:00
}