mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 13:54:23 +00:00
Remove obsolete controller.
This commit is contained in:
parent
dde05e554a
commit
c9d62be202
@ -1,30 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/**
|
|
||||||
* For the full copyright and license information, please view
|
|
||||||
* the LICENSE file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Chill\WopiBundle\Controller;
|
|
||||||
|
|
||||||
use Chill\WopiBundle\Service\OpenStack\OpenStackClientInterface;
|
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
|
||||||
|
|
||||||
final class Test
|
|
||||||
{
|
|
||||||
private OpenStackClientInterface $client;
|
|
||||||
|
|
||||||
public function __construct(OpenStackClientInterface $client)
|
|
||||||
{
|
|
||||||
$this->client = $client;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function __invoke()
|
|
||||||
{
|
|
||||||
dump($this->client);
|
|
||||||
|
|
||||||
return new Response('fobar');
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user