Skip to content

Commit

Permalink
Merge pull request #54 from spatie/analysis-ADbWQB
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
AlexVanderbist committed Mar 3, 2020
2 parents 16a94a0 + 5c1a683 commit f2e641b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/FailedJobNotifier.php
Expand Up @@ -2,8 +2,8 @@

namespace Spatie\FailedJobMonitor;

use Illuminate\Queue\QueueManager;
use Illuminate\Queue\Events\JobFailed;
use Illuminate\Queue\QueueManager;
use Spatie\FailedJobMonitor\Exceptions\InvalidConfiguration;

class FailedJobNotifier
Expand Down
4 changes: 2 additions & 2 deletions src/Notification.php
Expand Up @@ -2,11 +2,11 @@

namespace Spatie\FailedJobMonitor;

use Illuminate\Queue\Events\JobFailed;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Messages\SlackMessage;
use Illuminate\Notifications\Messages\SlackAttachment;
use Illuminate\Notifications\Messages\SlackMessage;
use Illuminate\Notifications\Notification as IlluminateNotification;
use Illuminate\Queue\Events\JobFailed;

class Notification extends IlluminateNotification
{
Expand Down
6 changes: 3 additions & 3 deletions tests/FailedJobMonitorTest.php
Expand Up @@ -2,14 +2,14 @@

namespace Spatie\FailedJobMonitor\Test;

use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Queue\Events\JobFailed;
use Illuminate\Support\Facades\Notification as NotificationFacade;
use Spatie\FailedJobMonitor\Notifiable;
use Spatie\FailedJobMonitor\Notification;
use Spatie\FailedJobMonitor\Test\Dummy\Job;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Spatie\FailedJobMonitor\Test\Dummy\AnotherNotifiable;
use Spatie\FailedJobMonitor\Test\Dummy\AnotherNotification;
use Illuminate\Support\Facades\Notification as NotificationFacade;
use Spatie\FailedJobMonitor\Test\Dummy\Job;

class FailedJobMonitorTest extends TestCase
{
Expand Down

0 comments on commit f2e641b

Please sign in to comment.