aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Notifications/ActionInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Notifications/ActionInterface.php')
-rw-r--r--src/Wallabag/CoreBundle/Notifications/ActionInterface.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Notifications/ActionInterface.php b/src/Wallabag/CoreBundle/Notifications/ActionInterface.php
new file mode 100644
index 00000000..e166e45b
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Notifications/ActionInterface.php
@@ -0,0 +1,42 @@
1<?php
2
3namespace Wallabag\CoreBundle\Notifications;
4
5interface ActionInterface
6{
7 /**
8 * @return string
9 */
10 public function getLabel();
11
12 /**
13 * @param string $label
14 *
15 * @return ActionInterface
16 */
17 public function setLabel($label);
18
19 /**
20 * @return int
21 */
22 public function getType();
23
24 /**
25 * @param int $type
26 *
27 * @return ActionInterface
28 */
29 public function setType($type);
30
31 /**
32 * @return string
33 */
34 public function getLink();
35
36 /**
37 * @param string $link
38 *
39 * @return ActionInterface
40 */
41 public function setLink($link);
42}