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

namespace Wallabag\CoreBundle\Notifications;

class YesAction extends Action {

    public function __construct($link)
    {
        $this->link = $link;
        $this->label = 'Yes';
        $this->type = Action::TYPE_YES;
    }
}