From 862d4e80bee3c5e06f197719153071309092364c Mon Sep 17 00:00:00 2001 From: Lynh Date: Fri, 7 Jul 2023 10:39:51 +0700 Subject: [PATCH] Small changes --- composer.json | 1 - tests/PoolTest.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 030b835..fe8094e 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,6 @@ }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.15", - "guzzlehttp/guzzle": "^7.5", "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^9.0" }, diff --git a/tests/PoolTest.php b/tests/PoolTest.php index 51a781b..302b43c 100644 --- a/tests/PoolTest.php +++ b/tests/PoolTest.php @@ -36,6 +36,6 @@ public function test_factory(): void { $this->expectException(UnsupportedException::class); - $pool = PoolFactory::create(new NullConnector()); + PoolFactory::create(new NullConnector()); } }