Skip to content

Commit

Permalink
remove , and define and with correct type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
scottaubrey committed Nov 8, 2024
1 parent 4379ad6 commit 1b859e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/src/Search/Web/ElasticTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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)
{
Expand Down

0 comments on commit 1b859e7

Please sign in to comment.