]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Notifications/YesAction.php
9b48eca5535a4f52aba489c3ea33f1a73cc5ab5b
[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 }