]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Event/EntrySavedEvent.php
WIP
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Event / EntrySavedEvent.php
diff --git a/src/Wallabag/CoreBundle/Event/EntrySavedEvent.php b/src/Wallabag/CoreBundle/Event/EntrySavedEvent.php
deleted file mode 100644 (file)
index 5fdb522..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-namespace Wallabag\CoreBundle\Event;
-
-use Symfony\Component\EventDispatcher\Event;
-use Wallabag\CoreBundle\Entity\Entry;
-
-/**
- * This event is fired as soon as an entry was saved.
- */
-class EntrySavedEvent extends Event
-{
-    const NAME = 'entry.saved';
-
-    protected $entry;
-
-    public function __construct(Entry $entry)
-    {
-        $this->entry = $entry;
-    }
-
-    public function getEntry()
-    {
-        return $this->entry;
-    }
-}