diff --git a/src/Bundle/ChillWopiBundle/src/Controller/Test.php b/src/Bundle/ChillWopiBundle/src/Controller/Test.php index c82054a7e..d0a45e9a0 100644 --- a/src/Bundle/ChillWopiBundle/src/Controller/Test.php +++ b/src/Bundle/ChillWopiBundle/src/Controller/Test.php @@ -10,22 +10,24 @@ declare(strict_types=1); namespace Chill\WopiBundle\Controller; use Chill\WopiBundle\Service\OpenStack\OpenStackClientInterface; +use OpenStack\OpenStack; use Symfony\Component\HttpFoundation\Response; final class Test { private OpenStackClientInterface $client; - public function __construct(OpenStackClientInterface $client) + private OpenStack $osClient; + + public function __construct(OpenStackClientInterface $client, OpenStack $osClient) { $this->client = $client; - - var_dump($client); + $this->osClient = $osClient; } public function __invoke() { - dump($this->client); + dump($this->osClient); return new Response('fobar'); }