label305/tasks

There is no license information available for the latest version (1.0.0) of this package.

Task management package

1.0.0 2021-04-02 12:20 UTC

This package is auto-updated.

Last update: 2024-04-29 04:35:44 UTC


README

Installation

composer require label305/tasks

Usage

To dispatch tasks use the DispatchesTasks or DispatchesContinuousTasks trait.

Example

public function ping() {
    $this->dispatchTask((new PingJob()));
}