]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Notifications/ActionInterface.php
Notifications
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Notifications / ActionInterface.php
1 <?php
2
3 namespace Wallabag\CoreBundle\Notifications;
4
5 interface 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 }