aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Event/Activity/Actions/Entry/EntryReadEvent.php
blob: be6e6b406f7fbf68c0740e8205b24d3a2c29a99d (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 EntryReadEvent extends EntryEvent
{
    const NAME = 'entry.read';
}