From bf6c0346d8d35a719dd1bff1cb4d573d422f99ff Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Wed, 31 May 2017 09:31:18 +0200 Subject: WIP Signed-off-by: Thomas Citharel --- .../Activity/Actions/Federation/FollowEvent.php | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/Wallabag/CoreBundle/Event/Activity/Actions/Federation/FollowEvent.php (limited to 'src/Wallabag/CoreBundle/Event/Activity/Actions/Federation/FollowEvent.php') diff --git a/src/Wallabag/CoreBundle/Event/Activity/Actions/Federation/FollowEvent.php b/src/Wallabag/CoreBundle/Event/Activity/Actions/Federation/FollowEvent.php new file mode 100644 index 00000000..4004932e --- /dev/null +++ b/src/Wallabag/CoreBundle/Event/Activity/Actions/Federation/FollowEvent.php @@ -0,0 +1,39 @@ +follower = $follower; + } + + /** + * @return Account + */ + public function getFollower() + { + return $this->follower; + } + + /** + * @param Account $follower + * @return FollowEvent + */ + public function setFollower(Account $follower) + { + $this->follower = $follower; + return $this; + } +} -- cgit v1.2.3