Skip to content

Commit

Permalink
Make testing relevant functions public
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Richter committed Jan 6, 2025
1 parent 554c3e7 commit a68867c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/Common/ElasticClientBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static function getClient(): ClientInterface
build();
}

protected function initialize(): ElasticClientBuilder
public function initialize(): ElasticClientBuilder
{
$this->extConf = new Collection(
GeneralUtility::makeInstance(ExtensionConfiguration::class)->
Expand All @@ -45,7 +45,7 @@ protected function initialize(): ElasticClientBuilder
return $this;
}

protected function autoconfig (): ElasticClientBuilder {
public function autoconfig (): ElasticClientBuilder {
$this->sethosts($this->hosts);
if ($this->password) {
$this->setBasicAuthentication('elastic', $this->password);
Expand Down

0 comments on commit a68867c

Please sign in to comment.