From d20adcd2c05144278056bd1eedfd201fdb6b13a3 Mon Sep 17 00:00:00 2001 From: rennokki Date: Fri, 4 Sep 2020 17:51:12 +0300 Subject: [PATCH] Apply fixes from StyleCI (#502) --- tests/Dashboard/RedisStatisticsTest.php | 1 - tests/Statistics/Logger/RedisStatisticsLoggerTest.php | 3 --- tests/Statistics/Logger/StatisticsLoggerTest.php | 2 -- 3 files changed, 6 deletions(-) diff --git a/tests/Dashboard/RedisStatisticsTest.php b/tests/Dashboard/RedisStatisticsTest.php index e498507..52b0148 100644 --- a/tests/Dashboard/RedisStatisticsTest.php +++ b/tests/Dashboard/RedisStatisticsTest.php @@ -2,7 +2,6 @@ namespace BeyondCode\LaravelWebSockets\Tests\Dashboard; -use BeyondCode\LaravelWebSockets\PubSub\ReplicationInterface; use BeyondCode\LaravelWebSockets\Statistics\Logger\RedisStatisticsLogger; use BeyondCode\LaravelWebSockets\Tests\Models\User; use BeyondCode\LaravelWebSockets\Tests\TestCase; diff --git a/tests/Statistics/Logger/RedisStatisticsLoggerTest.php b/tests/Statistics/Logger/RedisStatisticsLoggerTest.php index 4058dae..4752334 100644 --- a/tests/Statistics/Logger/RedisStatisticsLoggerTest.php +++ b/tests/Statistics/Logger/RedisStatisticsLoggerTest.php @@ -3,9 +3,6 @@ namespace BeyondCode\LaravelWebSockets\Tests\Statistics\Controllers; use BeyondCode\LaravelWebSockets\Facades\StatisticsLogger; -use BeyondCode\LaravelWebSockets\PubSub\ReplicationInterface; -use BeyondCode\LaravelWebSockets\Statistics\Logger\MemoryStatisticsLogger; -use BeyondCode\LaravelWebSockets\Statistics\Logger\NullStatisticsLogger; use BeyondCode\LaravelWebSockets\Statistics\Logger\RedisStatisticsLogger; use BeyondCode\LaravelWebSockets\Statistics\Models\WebSocketsStatisticsEntry; use BeyondCode\LaravelWebSockets\Tests\TestCase; diff --git a/tests/Statistics/Logger/StatisticsLoggerTest.php b/tests/Statistics/Logger/StatisticsLoggerTest.php index f040d13..08a8039 100644 --- a/tests/Statistics/Logger/StatisticsLoggerTest.php +++ b/tests/Statistics/Logger/StatisticsLoggerTest.php @@ -5,10 +5,8 @@ namespace BeyondCode\LaravelWebSockets\Tests\Statistics\Controllers; use BeyondCode\LaravelWebSockets\Facades\StatisticsLogger; use BeyondCode\LaravelWebSockets\Statistics\Logger\MemoryStatisticsLogger; use BeyondCode\LaravelWebSockets\Statistics\Logger\NullStatisticsLogger; -use BeyondCode\LaravelWebSockets\Statistics\Logger\RedisStatisticsLogger; use BeyondCode\LaravelWebSockets\Statistics\Models\WebSocketsStatisticsEntry; use BeyondCode\LaravelWebSockets\Tests\TestCase; -use Illuminate\Support\Facades\Redis; class StatisticsLoggerTest extends TestCase {