diff --git a/src/Bundle/ChillWopiBundle/src/Service/Wopi/ChillWopi.php b/src/Bundle/ChillWopiBundle/src/Service/Wopi/ChillWopi.php index 4c45a2fe4..70f66ae27 100644 --- a/src/Bundle/ChillWopiBundle/src/Service/Wopi/ChillWopi.php +++ b/src/Bundle/ChillWopiBundle/src/Service/Wopi/ChillWopi.php @@ -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; }