Remove obsolete controller.

This commit is contained in:
Pol Dellaiera 2021-08-19 14:11:46 +02:00 committed by Marc Ducobu
parent dde05e554a
commit c9d62be202

View File

@ -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');
}
}