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

This commit is contained in:
cherednik 2024-10-11 17:17:29 +04:00
parent 9883e5f9db
commit d4c3146c02
8 changed files with 10 additions and 10 deletions

View File

@ -2,7 +2,7 @@
declare(strict_types=1);
namespace App\Sign\Api;
namespace App\Api;
use App\Infrastructure\External\Api\AbstractApi;
use App\Infrastructure\External\Api\BinaryStringFileResult;

View File

@ -2,7 +2,7 @@
declare(strict_types=1);
namespace App\Sign\Api;
namespace App\Api;
class ApiParams
{

View File

@ -2,7 +2,7 @@
declare(strict_types=1);
namespace App\Sign\Api\Request;
namespace App\Api\Request;
use App\Infrastructure\Http\RequestDtoInterface;

View File

@ -2,15 +2,15 @@
declare(strict_types=1);
namespace App\Sign\Controller;
namespace App\Controller;
use App\Sign\Api\Request\SignRequest;
use App\Sign\SignService;
use App\Api\Request\SignRequest;
use App\SignService;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Security\Core\Exception\AccessDeniedException;
class SignController extends AbstractController

0
backend/src/Entity/.gitignore vendored Normal file
View File

0
backend/src/Repository/.gitignore vendored Normal file
View File

View File

@ -2,11 +2,11 @@
declare(strict_types=1);
namespace App\Sign;
namespace App;
use App\Api\Api;
use App\Api\ApiParams;
use App\Infrastructure\External\Api\BinaryStringFileResult;
use App\Sign\Api\Api;
use App\Sign\Api\ApiParams;
use Exception;
use RuntimeException;