]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Notifications/YesAction.php
Notifications
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Notifications / YesAction.php
diff --git a/src/Wallabag/CoreBundle/Notifications/YesAction.php b/src/Wallabag/CoreBundle/Notifications/YesAction.php
new file mode 100644 (file)
index 0000000..9b48eca
--- /dev/null
@@ -0,0 +1,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;
+    }
+}