aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Notifications/NoAction.php
blob: 73c927969e24a5f74a4f679a7c794b0665eda6d3 (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;
    }
}