aboutsummaryrefslogtreecommitdiffhomepage
path: root/api/Posts/Events/PostWasDeleted.php
diff options
context:
space:
mode:
Diffstat (limited to 'api/Posts/Events/PostWasDeleted.php')
-rw-r--r--api/Posts/Events/PostWasDeleted.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/api/Posts/Events/PostWasDeleted.php b/api/Posts/Events/PostWasDeleted.php
deleted file mode 100644
index 5def797..0000000
--- a/api/Posts/Events/PostWasDeleted.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-namespace Api\Posts\Events;
-
-use Infrastructure\Events\Event;
-use Api\Posts\Models\Post;
-
-class PostWasDeleted extends Event
-{
- public $post;
-
- public function __construct(Post $post)
- {
- $this->post = $post;
- }
-}