Skip to content

Commit

Permalink
Style fixes for de2e30a80943702166f0e2cce9cf088a64a9e435
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Brokman committed Sep 7, 2016
1 parent f577317 commit be26c0e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions AttemptsExceededException.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
<?php


namespace Illuminate\Queue;


use RuntimeException;

class AttemptsExceededException extends RuntimeException
Expand Down
2 changes: 1 addition & 1 deletion Worker.php
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ 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);

Expand Down

0 comments on commit be26c0e

Please sign in to comment.