]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Notifications/YesAction.php
Notifications
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Notifications / YesAction.php
1 <?php
2
3 namespace Wallabag\CoreBundle\Notifications;
4
5 class YesAction extends Action
6 {
7 public function __construct($link)
8 {
9 $this->link = $link;
10 $this->label = 'Yes';
11 $this->type = Action::TYPE_YES;
12 }
13 }