v0.3.0
⬆️ Add support for Laravel 7 (#35)
🐎 No longer instantiate every listener to check if it's an action (#33)
✨ Add the following new static helpers to run actions (#36)
MyAction::make([/* ... */])
// Equivalent to:
new MyAction([/* ... */]);
MyAction::run([/* ... */])
// Equivalent to:
(new MyAction)->run([/* ... */]);
run
method. If that's the case make sure to override the handleRun
method instead.
// Previous signature to override.
public function run(array $attributes = [])
// New signature to override.
protected function handleRun(array $attributes = [])