]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Notifications/ActionInterface.php
Notifications
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Notifications / ActionInterface.php
diff --git a/src/Wallabag/CoreBundle/Notifications/ActionInterface.php b/src/Wallabag/CoreBundle/Notifications/ActionInterface.php
new file mode 100644 (file)
index 0000000..e166e45
--- /dev/null
@@ -0,0 +1,42 @@
+<?php
+
+namespace Wallabag\CoreBundle\Notifications;
+
+interface ActionInterface
+{
+    /**
+     * @return string
+     */
+    public function getLabel();
+
+    /**
+     * @param string $label
+     *
+     * @return ActionInterface
+     */
+    public function setLabel($label);
+
+    /**
+     * @return int
+     */
+    public function getType();
+
+    /**
+     * @param int $type
+     *
+     * @return ActionInterface
+     */
+    public function setType($type);
+
+    /**
+     * @return string
+     */
+    public function getLink();
+
+    /**
+     * @param string $link
+     *
+     * @return ActionInterface
+     */
+    public function setLink($link);
+}