]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Notifications/ActionInterface.php
First draft for notifications
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Notifications / ActionInterface.php
CommitLineData
22a4b20e
TC
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 * @return ActionInterface
15 */
16 public function setLabel($label);
17
18 /**
19 * @return int
20 */
21 public function getType();
22
23 /**
24 * @param int $type
25 * @return ActionInterface
26 */
27 public function setType($type);
28
29 /**
30 * @return string
31 */
32 public function getLink();
33
34 /**
35 * @param string $link
36 * @return ActionInterface
37 */
38 public function setLink($link);
39
40
41}