Skip to content
This repository has been archived by the owner on Dec 28, 2023. It is now read-only.

Commit

Permalink
Merge pull request #20 from gpressutto5/analysis-EAoyav
Browse files Browse the repository at this point in the history
  • Loading branch information
gpressutto5 authored May 11, 2020
2 parents 0d1a0f4 + d7474d4 commit 26d0e4f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/Notifications/SimpleSlack.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Pressutto\LaravelSlack\Notifications;

use Illuminate\Notifications\Notification;
use Illuminate\Notifications\Messages\SlackMessage;
use Illuminate\Notifications\Notification;

class SimpleSlack extends Notification
{
Expand Down
4 changes: 2 additions & 2 deletions src/Slack.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Pressutto\LaravelSlack;

use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Notification;
use Illuminate\Notifications\AnonymousNotifiable;
use Illuminate\Notifications\Messages\SlackMessage;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Notification;
use Pressutto\LaravelSlack\Notifications\SimpleSlack;

class Slack
Expand Down
4 changes: 2 additions & 2 deletions src/Testing/SlackFake.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Pressutto\LaravelSlack\Testing;

use Pressutto\LaravelSlack\Slack;
use PHPUnit\Framework\Assert as PHPUnit;
use Illuminate\Notifications\Messages\SlackMessage;
use PHPUnit\Framework\Assert as PHPUnit;
use Pressutto\LaravelSlack\Slack;

class SlackFake extends Slack
{
Expand Down
2 changes: 1 addition & 1 deletion tests/RecipientsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Tests;

use ReflectionObject;
use Illuminate\Database\Eloquent\Model;
use ReflectionObject;

class RecipientsTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/SendMessageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Tests;

use Illuminate\Support\Facades\Notification;
use Illuminate\Notifications\AnonymousNotifiable;
use Illuminate\Notifications\Messages\SlackMessage;
use Illuminate\Support\Facades\Notification;
use Pressutto\LaravelSlack\Notifications\SimpleSlack;

class SendMessageTest extends TestCase
Expand Down
8 changes: 4 additions & 4 deletions tests/SlackFakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

namespace Tests;

use Pressutto\LaravelSlack\Facades\Slack;
use Illuminate\Support\Facades\Notification;
use Illuminate\Notifications\AnonymousNotifiable;
use PHPUnit\Framework\ExpectationFailedException;
use PHPUnit\Framework\Constraint\ExceptionMessage;
use Illuminate\Notifications\Messages\SlackMessage;
use Illuminate\Support\Facades\Notification;
use PHPUnit\Framework\Constraint\ExceptionMessage;
use PHPUnit\Framework\ExpectationFailedException;
use Pressutto\LaravelSlack\Facades\Slack;
use Pressutto\LaravelSlack\Notifications\SimpleSlack;

class SlackFakeTest extends TestCase
Expand Down

0 comments on commit 26d0e4f

Please sign in to comment.