aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Notifications/YesAction.php
blob: 9b48eca5535a4f52aba489c3ea33f1a73cc5ab5b (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;
    }
}