aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Notifications/NoAction.php
blob: 606372b6193c437b810abc1ee58800f746f0adae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace Wallabag\CoreBundle\Notifications;

class NoAction extends Action
{
    public function __construct($link)
    {
        $this->link = $link;
        $this->label = 'No';
        $this->type = Action::TYPE_NO;
    }
}