diff options
author | Kévin Gomez <contact@kevingomez.fr> | 2015-10-11 17:37:05 +0200 |
---|---|---|
committer | Kévin Gomez <contact@kevingomez.fr> | 2015-11-11 16:23:49 +0100 |
commit | 9cbb404b4a2f76ad387ee31160bcf461048bc003 (patch) | |
tree | cdb3375e0da2b8f7f274c10a04241c6ce5a9edd5 /src/Wallabag | |
parent | f19f9f62d13c62f18884e8bd0fa67403e8cad8d7 (diff) | |
download | wallabag-9cbb404b4a2f76ad387ee31160bcf461048bc003.tar.gz wallabag-9cbb404b4a2f76ad387ee31160bcf461048bc003.tar.zst wallabag-9cbb404b4a2f76ad387ee31160bcf461048bc003.zip |
Add missing tagging rule repository
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/CoreBundle/Repository/TaggingRuleRepository.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Repository/TaggingRuleRepository.php b/src/Wallabag/CoreBundle/Repository/TaggingRuleRepository.php new file mode 100644 index 00000000..de380738 --- /dev/null +++ b/src/Wallabag/CoreBundle/Repository/TaggingRuleRepository.php | |||
@@ -0,0 +1,9 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Repository; | ||
4 | |||
5 | use Doctrine\ORM\EntityRepository; | ||
6 | |||
7 | class TaggingRuleRepository extends EntityRepository | ||
8 | { | ||
9 | } | ||