Skip to content

Commit 77d5d83

Browse files
authored
chore: style fixes
1 parent 68fa3fe commit 77d5d83

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

src/Commands/SetupCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
namespace NotificationChannels\Discord\Commands;
44

55
use Exception;
6-
use WebSocket\Client;
7-
use Illuminate\Support\Arr;
8-
use Illuminate\Console\Command;
96
use GuzzleHttp\Client as HttpClient;
7+
use Illuminate\Console\Command;
8+
use Illuminate\Support\Arr;
9+
use WebSocket\Client;
1010

1111
class SetupCommand extends Command
1212
{

src/Discord.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
namespace NotificationChannels\Discord;
44

55
use Exception;
6-
use Illuminate\Support\Arr;
76
use GuzzleHttp\Client as HttpClient;
87
use GuzzleHttp\Exception\RequestException;
8+
use Illuminate\Support\Arr;
99
use NotificationChannels\Discord\Exceptions\CouldNotSendNotification;
1010

1111
class Discord

tests/DiscordChannelTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace NotificationChannels\Discord\Tests;
44

5-
use Mockery;
6-
use GuzzleHttp\Psr7\Response;
75
use GuzzleHttp\Client as HttpClient;
6+
use GuzzleHttp\Psr7\Response;
7+
use Mockery;
88
use NotificationChannels\Discord\Discord;
99
use NotificationChannels\Discord\DiscordChannel;
1010
use NotificationChannels\Discord\DiscordMessage;

tests/DiscordServiceProviderTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
namespace NotificationChannels\Discord\Tests;
44

5-
use Mockery;
6-
use NotificationChannels\Discord\Discord;
75
use Illuminate\Config\Repository as Config;
86
use Illuminate\Contracts\Foundation\Application;
7+
use Mockery;
98
use NotificationChannels\Discord\Commands\SetupCommand;
9+
use NotificationChannels\Discord\Discord;
1010
use NotificationChannels\Discord\DiscordServiceProvider;
1111

1212
class DiscordServiceProviderTest extends BaseTest

tests/DiscordTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
namespace NotificationChannels\Discord\Tests;
44

5-
use Mockery;
65
use Exception;
6+
use GuzzleHttp\Client as HttpClient;
7+
use GuzzleHttp\Exception\RequestException;
78
use GuzzleHttp\Psr7\Request;
89
use GuzzleHttp\Psr7\Response;
9-
use GuzzleHttp\Client as HttpClient;
10+
use Mockery;
1011
use NotificationChannels\Discord\Discord;
11-
use GuzzleHttp\Exception\RequestException;
1212
use NotificationChannels\Discord\Exceptions\CouldNotSendNotification;
1313

1414
class DiscordTest extends BaseTest

tests/SetupCommandTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
namespace NotificationChannels\Discord\Tests;
44

5-
use Mockery;
6-
use WebSocket\Client;
5+
use GuzzleHttp\Client as HttpClient;
6+
use GuzzleHttp\Exception\RequestException;
77
use GuzzleHttp\Psr7\Request;
88
use GuzzleHttp\Psr7\Response;
9-
use GuzzleHttp\Client as HttpClient;
109
use Illuminate\Contracts\Console\Kernel;
11-
use GuzzleHttp\Exception\RequestException;
12-
use Orchestra\Testbench\TestCase as Orchestra;
10+
use Mockery;
1311
use NotificationChannels\Discord\Commands\SetupCommand;
12+
use Orchestra\Testbench\TestCase as Orchestra;
13+
use WebSocket\Client;
1414

1515
class SetupCommandTest extends Orchestra
1616
{

0 commit comments

Comments
 (0)