aboutsummaryrefslogtreecommitdiff
path: root/app/Listeners
diff options
context:
space:
mode:
Diffstat (limited to 'app/Listeners')
-rw-r--r--app/Listeners/ExampleListener.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/app/Listeners/ExampleListener.php b/app/Listeners/ExampleListener.php
new file mode 100644
index 0000000..77fc6a8
--- /dev/null
+++ b/app/Listeners/ExampleListener.php
@@ -0,0 +1,31 @@
+<?php
+
+namespace App\Listeners;
+
+use App\Events\ExampleEvent;
+use Illuminate\Queue\InteractsWithQueue;
+use Illuminate\Contracts\Queue\ShouldQueue;
+
+class ExampleListener
+{
+ /**
+ * Create the event listener.
+ *
+ * @return void
+ */
+ public function __construct()
+ {
+ //
+ }
+
+ /**
+ * Handle the event.
+ *
+ * @param ExampleEvent $event
+ * @return void
+ */
+ public function handle(ExampleEvent $event)
+ {
+ //
+ }
+}