From 1b859e70d1dc9968e5dd0413da74f8604c1aefdb Mon Sep 17 00:00:00 2001 From: Scott Aubrey Date: Fri, 8 Nov 2024 07:56:27 +0000 Subject: [PATCH] remove , and define and with correct type hints --- tests/src/Search/Web/ElasticTestCase.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/src/Search/Web/ElasticTestCase.php b/tests/src/Search/Web/ElasticTestCase.php index 5a274652..c4fd8d31 100644 --- a/tests/src/Search/Web/ElasticTestCase.php +++ b/tests/src/Search/Web/ElasticTestCase.php @@ -9,8 +9,6 @@ use eLife\Search\Kernel; use eLife\Search\KeyValueStore\ElasticSearchKeyValueStore; use Psr\Log\NullLogger; -use RuntimeException; -use Symfony\Component\BrowserKit\Client; use Symfony\Component\Console\Application; use Symfony\Component\Console\Input\StringInput; use Symfony\Component\Console\Output\StreamOutput; @@ -20,8 +18,10 @@ abstract class ElasticTestCase extends WebTestCase { protected $console; - /** @var MappedElasticsearchClient */ - protected $client; + + protected MappedElasticsearchClient $mappedClient; + + protected PlainElasticsearchClient $plainClient; public function getCollectionFixture(int $num) {