mirror of
https://gitlab.com/izyim/prototypes/lumen-microservices/microservice-api-gateway.git
synced 2026-08-19 20:44:23 +00:00
27 lines
315 B
PHP
27 lines
315 B
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
class ExampleJob extends Job
|
|
{
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
//
|
|
}
|
|
}
|