mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
fix: Fix service naming, remove the suffix.
This commit is contained in:
parent
d66181cf1c
commit
dde05e554a
@ -31,7 +31,7 @@ final class ChillWopi implements WopiInterface
|
|||||||
|
|
||||||
private ClientInterface $httpClient;
|
private ClientInterface $httpClient;
|
||||||
|
|
||||||
private TempUrlGeneratorInterface $tempUrlGeneratorInterface;
|
private TempUrlGeneratorInterface $tempUrlGenerator;
|
||||||
|
|
||||||
private Security $security;
|
private Security $security;
|
||||||
|
|
||||||
@ -42,7 +42,7 @@ final class ChillWopi implements WopiInterface
|
|||||||
WopiDiscoveryInterface $wopiDiscovery,
|
WopiDiscoveryInterface $wopiDiscovery,
|
||||||
StoredObjectRepository $storedObjectRepository,
|
StoredObjectRepository $storedObjectRepository,
|
||||||
ClientInterface $httpClient,
|
ClientInterface $httpClient,
|
||||||
TempUrlGeneratorInterface $tempUrlGeneratorInterface,
|
TempUrlGeneratorInterface $tempUrlGenerator,
|
||||||
Security $security,
|
Security $security,
|
||||||
UserProviderInterface $userProvider
|
UserProviderInterface $userProvider
|
||||||
) {
|
) {
|
||||||
@ -50,7 +50,7 @@ final class ChillWopi implements WopiInterface
|
|||||||
$this->wopiDiscovery = $wopiDiscovery;
|
$this->wopiDiscovery = $wopiDiscovery;
|
||||||
$this->storedObjectRepository = $storedObjectRepository;
|
$this->storedObjectRepository = $storedObjectRepository;
|
||||||
$this->httpClient = $httpClient;
|
$this->httpClient = $httpClient;
|
||||||
$this->tempUrlGeneratorInterface = $tempUrlGeneratorInterface;
|
$this->tempUrlGenerator = $tempUrlGenerator;
|
||||||
$this->security = $security;
|
$this->security = $security;
|
||||||
$this->userProvider = $userProvider;
|
$this->userProvider = $userProvider;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user