From b1db4ec38422d1f0ae2c14f0227b8cde0638899e Mon Sep 17 00:00:00 2001 From: Max Brokman Date: Wed, 7 Sep 2016 12:27:24 +0100 Subject: [PATCH] Style fixes suggested in laravel/framework#15319 --- Worker.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Worker.php b/Worker.php index 45f5497d..e9ddeebf 100644 --- a/Worker.php +++ b/Worker.php @@ -254,8 +254,9 @@ protected function handleJobException($connectionName, $job, WorkerOptions $opti } /** - * Mark the given job as failed if it has exceeded the maximum allowed attempts. This will likely be because - * the job previously exceeded a timeout. + * Mark the given job as failed if it has exceeded the maximum allowed attempts. + * + * This will likely be because the job previously exceeded a timeout. * * @param string $connectionName * @param \Illuminate\Contracts\Queue\Job $job @@ -269,7 +270,8 @@ protected function markJobAsFailedIfAlreadyExceedsMaxAttempts($connectionName, $ } $e = new AttemptsExceededException( - 'Queue job has already been attempted more than maxTries, it may have previously timed out'); + 'Queue job has already been attempted more than maxTries, it may have previously timed out' + ); $this->failJob($connectionName, $job, $e);