diff --git a/README.md b/README.md index b2aecfd..f62b473 100644 --- a/README.md +++ b/README.md @@ -125,11 +125,7 @@ class MyController extends AbstractActionController // Do some work $this->queue->push( - EmailJob::create([ - 'john@doe.com', - 'Just hi', - 'Hi, I want to say hi!' - ]), + EmailJob::create('john@doe.com', 'Just hi', 'Hi, I want to say hi!'), ['delay' => 60] ); }