diff --git a/stubs/StubQueue.php b/stubs/StubQueue.php index a275618b..e4b8708b 100644 --- a/stubs/StubQueue.php +++ b/stubs/StubQueue.php @@ -15,7 +15,8 @@ */ final class StubQueue implements QueueInterface { - public function __construct(private ?AdapterInterface $adapter = null) { + public function __construct(private ?AdapterInterface $adapter = null) + { } public function push( diff --git a/tests/Unit/Stubs/StubQueueTest.php b/tests/Unit/Stubs/StubQueueTest.php index 5692ae8e..548705ab 100644 --- a/tests/Unit/Stubs/StubQueueTest.php +++ b/tests/Unit/Stubs/StubQueueTest.php @@ -6,7 +6,6 @@ use PHPUnit\Framework\TestCase; use Yiisoft\Queue\Message\Message; -use Yiisoft\Queue\QueueInterface; use Yiisoft\Queue\Stubs\StubQueue; use Yiisoft\Queue\Stubs\StubAdapter;