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