mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 13:54:23 +00:00
refactor: Add TempUrlGeneratorInterface wiring.
This commit is contained in:
parent
72fc6e05cc
commit
e4d9129af2
@ -9,6 +9,8 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
|
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
|
||||||
|
|
||||||
|
use ChampsLibres\AsyncUploaderBundle\TempUrl\TempUrlGeneratorInterface;
|
||||||
|
use ChampsLibres\AsyncUploaderBundle\TempUrl\TempUrlOpenstackGenerator;
|
||||||
use ChampsLibres\WopiLib\WopiInterface;
|
use ChampsLibres\WopiLib\WopiInterface;
|
||||||
use Chill\WopiBundle\Service\Wopi\ChillWopi;
|
use Chill\WopiBundle\Service\Wopi\ChillWopi;
|
||||||
|
|
||||||
@ -30,4 +32,7 @@ return static function (ContainerConfigurator $container) {
|
|||||||
|
|
||||||
$services
|
$services
|
||||||
->alias(WopiInterface::class, ChillWopi::class);
|
->alias(WopiInterface::class, ChillWopi::class);
|
||||||
|
|
||||||
|
$services
|
||||||
|
->alias(TempUrlGeneratorInterface::class, TempUrlOpenstackGenerator::class);
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user