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 --- .../Event/Activity/Actions/Entry/EntryEvent.php | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/Wallabag/CoreBundle/Event/Activity/Actions/Entry/EntryEvent.php (limited to 'src/Wallabag/CoreBundle/Event/Activity/Actions/Entry/EntryEvent.php') diff --git a/src/Wallabag/CoreBundle/Event/Activity/Actions/Entry/EntryEvent.php b/src/Wallabag/CoreBundle/Event/Activity/Actions/Entry/EntryEvent.php new file mode 100644 index 00000000..0e0c90d0 --- /dev/null +++ b/src/Wallabag/CoreBundle/Event/Activity/Actions/Entry/EntryEvent.php @@ -0,0 +1,41 @@ +entry = $entry; + } + + /** + * @return Entry + */ + public function getEntry() + { + return $this->entry; + } + + /** + * @param Entry $entry + * @return EntryEvent + */ + public function setEntry(Entry $entry) + { + $this->entry = $entry; + return $this; + } +} -- cgit v1.2.3