aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Event/Activity/Actions/Entry/EntryFavouriteEvent.php
blob: 98edb00d5d0d47e19d9741c5fae18059d197f012 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace Wallabag\CoreBundle\Event\Activity\Actions\Entry;

use Symfony\Component\EventDispatcher\Event;
use Wallabag\CoreBundle\Entity\Entry;

/**
 * This event is fired as soon as an entry was favourited.
 */
class EntryFavouriteEvent extends EntryEvent
{
    const NAME = 'entry.favourite';
}