TD-322: [BACK]. [реализовать сервис для подписания документов в контейнере signer] #2
|
|
@ -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;
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Sign\Api;
|
||||
namespace App\Api;
|
||||
|
||||
class ApiParams
|
||||
{
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Sign\Api\Request;
|
||||
namespace App\Api\Request;
|
||||
|
||||
use App\Infrastructure\Http\RequestDtoInterface;
|
||||
|
||||
|
|
@ -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
|
||||
|
|
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue