From c16fc77d01487f97bd49a7e0bea9c07b19c229e7 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Tue, 17 Aug 2021 17:51:05 +0200 Subject: [PATCH] fix: Fix service naming, remove the suffix. --- src/Bundle/ChillWopiBundle/src/Service/Wopi/ChillWopi.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }