TD-314: [BACK]. [реализовать сервис для подписания документов в контейнере signer] #1

Merged
dcherednik merged 4 commits from TD-314 into main 2024-10-07 17:36:34 +03:00
1 changed files with 7 additions and 2 deletions
Showing only changes of commit caf6e82fc5 - Show all commits

View File

@ -4,10 +4,15 @@ declare(strict_types=1);
namespace App\Controller; namespace App\Controller;
use GuzzleHttp\Client;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\HttpFoundation\Response;
class SignController extends AbstractController class SignController extends AbstractController
{ {
#[Route(path: '/test', name: 'app.test')]
public function __invoke(): Response
{
return new Response('test123');
}
} }