aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/IgnoreOriginRuleInterface.php
blob: eb865a3a093e1f80aa3525b2e2f4f1039ee2c6b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

namespace Wallabag\CoreBundle\Entity;

interface IgnoreOriginRuleInterface
{
    public function getId();

    public function setRule(string $rule);

    public function getRule();
}