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

20 lines
449 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;
2025-04-21 16:27:44 +02:00
use Wallabag\Entity\User;
2015-02-16 21:28:49 +01:00
2022-11-23 15:51:33 +01:00
/**
2025-04-21 16:27:44 +02:00
* @method Config|null findOneByUser(User $user)
2022-11-23 15:51:33 +01:00
*/
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
}