Abstraction layers for creating Jobs & Queueable's in Laravel applications
You can install the package via composer:
composer require sfneal/queueables
# Create a Job class
use Sfneal\Queueables\AbstractJob;
class ExampleJob extends AbstractJob
{
/**
* Execute the job.
*
* @return mixed
*/
public function handle()
{
return 'example job has been executed';
}
}
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email stephen.neal14@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the PHP Package Boilerplate.