mirror of
https://gitlab.com/izyim/prototypes/lumen-microservices/microservice-api-gateway.git
synced 2026-08-19 04:24:15 +00:00
16 lines
193 B
PHP
16 lines
193 B
PHP
<?php
|
|
|
|
declare(strict_types = 1);
|
|
|
|
namespace App\Events;
|
|
|
|
class ExampleEvent extends Event
|
|
{
|
|
/**
|
|
* Create a new event instance.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
}
|
|
}
|