Skip to content

Commit

Permalink
IBX-8394: Used new RepositoryConfigurationProviderInterface contract (#…
Browse files Browse the repository at this point in the history
…57)

For more details see https://issues.ibexa.co/browse/IBX-8394 and #57

Key changes:

* [Rector] Used new RepositoryConfigurationProviderInterface contract
  • Loading branch information
alongosz authored Jul 25, 2024
1 parent c84b64f commit a256dfd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/Service/SearchEngineServiceInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace Ibexa\SystemInfo\Service;

use Ibexa\Bundle\Core\ApiLoader\RepositoryConfigurationProvider;
use Ibexa\Contracts\Core\Container\ApiLoader\RepositoryConfigurationProviderInterface;

/**
* @internal
Expand All @@ -18,9 +18,9 @@ final class SearchEngineServiceInfo implements ServiceInfo
private const SEARCH_KEY = 'search';
private const ENGINE_KEY = 'engine';

private RepositoryConfigurationProvider $repositoryConfigProvider;
private RepositoryConfigurationProviderInterface $repositoryConfigProvider;

public function __construct(RepositoryConfigurationProvider $repositoryConfigProvider)
public function __construct(RepositoryConfigurationProviderInterface $repositoryConfigProvider)
{
$this->repositoryConfigProvider = $repositoryConfigProvider;
}
Expand Down

0 comments on commit a256dfd

Please sign in to comment.