fix: Fix service naming, remove the suffix.

This commit is contained in:
Pol Dellaiera 2021-08-17 17:51:05 +02:00 committed by Marc Ducobu
parent d66181cf1c
commit dde05e554a

View File

@ -31,7 +31,7 @@ final class ChillWopi implements WopiInterface
private ClientInterface $httpClient;
private TempUrlGeneratorInterface $tempUrlGeneratorInterface;
private TempUrlGeneratorInterface $tempUrlGenerator;
private Security $security;
@ -42,7 +42,7 @@ final class ChillWopi implements WopiInterface
WopiDiscoveryInterface $wopiDiscovery,
StoredObjectRepository $storedObjectRepository,
ClientInterface $httpClient,
TempUrlGeneratorInterface $tempUrlGeneratorInterface,
TempUrlGeneratorInterface $tempUrlGenerator,
Security $security,
UserProviderInterface $userProvider
) {
@ -50,7 +50,7 @@ final class ChillWopi implements WopiInterface
$this->wopiDiscovery = $wopiDiscovery;
$this->storedObjectRepository = $storedObjectRepository;
$this->httpClient = $httpClient;
$this->tempUrlGeneratorInterface = $tempUrlGeneratorInterface;
$this->tempUrlGenerator = $tempUrlGenerator;
$this->security = $security;
$this->userProvider = $userProvider;
}