wallabag/src/Wallabag/CoreBundle/Repository/ConfigRepository.php

19 lines
446 B
PHP
Raw Normal View History

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