Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgergo committed Nov 23, 2020
1 parent c8bb3fa commit 54b697f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion src/QueueEventLoggerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class QueueEventLoggerServiceProvider extends ServiceProvider
*/
public function boot(): void
{
Event::listen(JobExceptionOccurred::class, static function (JobExceptionOccurred $event) {
Event::listen(JobExceptionOccurred::class, static function (JobExceptionOccurred $event): void {
Log::channel('queue')->error(
sprintf(
'[%s] Uncaught exception %s in job %s: %s%s',
Expand Down
5 changes: 0 additions & 5 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,4 @@
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;

public function setUp(): void
{
parent::setUp();
}
}

0 comments on commit 54b697f

Please sign in to comment.