mirror of
https://gitlab.com/izyim/prototypes/lumen-microservices/microservice-api-gateway.git
synced 2026-08-19 12:34:22 +00:00
17 lines
203 B
PHP
17 lines
203 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
class ExampleEvent extends Event
|
|
{
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
}
|