mirror of
https://github.com/wallabag/wallabag.git
synced 2025-08-21 18:11:10 +00:00
15 lines
442 B
PHP
15 lines
442 B
PHP
<?php
|
|
|
|
namespace Wallabag\CoreBundle\Repository;
|
|
|
|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
|
use Doctrine\Persistence\ManagerRegistry;
|
|
use Wallabag\CoreBundle\Entity\IgnoreOriginInstanceRule;
|
|
|
|
class IgnoreOriginInstanceRuleRepository extends ServiceEntityRepository
|
|
{
|
|
public function __construct(ManagerRegistry $registry)
|
|
{
|
|
parent::__construct($registry, IgnoreOriginInstanceRule::class);
|
|
}
|
|
}
|