Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit 4aec422

Browse files
authored
Apply fixes from StyleCI (#489)
1 parent a897ce2 commit 4aec422

File tree

4 files changed

+1
-7
lines changed

4 files changed

+1
-7
lines changed

src/Contracts/PushesToPusher.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace BeyondCode\LaravelWebSockets\Contracts;
44

5-
use BeyondCode\LaravelWebSockets\PubSub\Broadcasters\RedisPusherBroadcaster;
65
use Illuminate\Broadcasting\Broadcasters\PusherBroadcaster;
76
use Pusher\Pusher;
87

src/HttpApi/Controllers/Controller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace BeyondCode\LaravelWebSockets\HttpApi\Controllers;
44

55
use BeyondCode\LaravelWebSockets\Apps\App;
6+
use BeyondCode\LaravelWebSockets\PubSub\ReplicationInterface;
67
use BeyondCode\LaravelWebSockets\QueryParameters;
78
use BeyondCode\LaravelWebSockets\WebSockets\Channels\ChannelManager;
89
use Exception;
@@ -19,7 +20,6 @@
1920
use React\Promise\PromiseInterface;
2021
use Symfony\Bridge\PsrHttpMessage\Factory\HttpFoundationFactory;
2122
use Symfony\Component\HttpKernel\Exception\HttpException;
22-
use BeyondCode\LaravelWebSockets\PubSub\ReplicationInterface;
2323

2424
abstract class Controller implements HttpServerInterface
2525
{

src/HttpApi/Controllers/FetchChannelsController.php

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

33
namespace BeyondCode\LaravelWebSockets\HttpApi\Controllers;
44

5-
use BeyondCode\LaravelWebSockets\PubSub\ReplicationInterface;
6-
use BeyondCode\LaravelWebSockets\WebSockets\Channels\ChannelManager;
75
use BeyondCode\LaravelWebSockets\WebSockets\Channels\PresenceChannel;
86
use Illuminate\Http\Request;
97
use Illuminate\Support\Collection;

src/WebSocketsServiceProvider.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,9 @@
1212
use BeyondCode\LaravelWebSockets\Statistics\Drivers\StatisticsDriver;
1313
use BeyondCode\LaravelWebSockets\WebSockets\Channels\ChannelManager;
1414
use BeyondCode\LaravelWebSockets\WebSockets\Channels\ChannelManagers\ArrayChannelManager;
15-
use Illuminate\Broadcasting\BroadcastManager;
1615
use Illuminate\Support\Facades\Gate;
1716
use Illuminate\Support\Facades\Route;
1817
use Illuminate\Support\ServiceProvider;
19-
use Psr\Log\LoggerInterface;
20-
use Pusher\Pusher;
2118

2219
class WebSocketsServiceProvider extends ServiceProvider
2320
{

0 commit comments

Comments
 (0)