diff options
Diffstat (limited to 'app/Events/ExampleEvent.php')
-rw-r--r-- | app/Events/ExampleEvent.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/Events/ExampleEvent.php b/app/Events/ExampleEvent.php new file mode 100644 index 0000000..4bd1268 --- /dev/null +++ b/app/Events/ExampleEvent.php @@ -0,0 +1,16 @@ +<?php + +namespace App\Events; + +class ExampleEvent extends Event +{ + /** + * Create a new event instance. + * + * @return void + */ + public function __construct() + { + // + } +} |