aboutsummaryrefslogtreecommitdiff
path: root/app/Events/Event.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Events/Event.php')
-rw-r--r--app/Events/Event.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/Events/Event.php b/app/Events/Event.php
new file mode 100644
index 0000000..b8230f0
--- /dev/null
+++ b/app/Events/Event.php
@@ -0,0 +1,10 @@
+<?php
+
+namespace App\Events;
+
+use Illuminate\Queue\SerializesModels;
+
+abstract class Event
+{
+ use SerializesModels;
+}