Skip to content

Commit a256dfd

Browse files
authored
IBX-8394: Used new RepositoryConfigurationProviderInterface contract (#57)
For more details see https://issues.ibexa.co/browse/IBX-8394 and #57 Key changes: * [Rector] Used new RepositoryConfigurationProviderInterface contract
1 parent c84b64f commit a256dfd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib/Service/SearchEngineServiceInfo.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace Ibexa\SystemInfo\Service;
1010

11-
use Ibexa\Bundle\Core\ApiLoader\RepositoryConfigurationProvider;
11+
use Ibexa\Contracts\Core\Container\ApiLoader\RepositoryConfigurationProviderInterface;
1212

1313
/**
1414
* @internal
@@ -18,9 +18,9 @@ final class SearchEngineServiceInfo implements ServiceInfo
1818
private const SEARCH_KEY = 'search';
1919
private const ENGINE_KEY = 'engine';
2020

21-
private RepositoryConfigurationProvider $repositoryConfigProvider;
21+
private RepositoryConfigurationProviderInterface $repositoryConfigProvider;
2222

23-
public function __construct(RepositoryConfigurationProvider $repositoryConfigProvider)
23+
public function __construct(RepositoryConfigurationProviderInterface $repositoryConfigProvider)
2424
{
2525
$this->repositoryConfigProvider = $repositoryConfigProvider;
2626
}

0 commit comments

Comments
 (0)