mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-05 14:25:00 +00:00
Merge branch 'upgrade-sf5' into signature-app-master
This commit is contained in:
@@ -27,18 +27,18 @@ use Symfony\Component\HttpFoundation\RequestStack;
|
||||
use Symfony\Component\Mime\MimeTypes;
|
||||
use Symfony\Component\Serializer\Normalizer\ObjectNormalizer;
|
||||
|
||||
final class ChillDocumentManager implements DocumentManagerInterface
|
||||
final readonly class ChillDocumentManager implements DocumentManagerInterface
|
||||
{
|
||||
private readonly RequestInterface $request;
|
||||
private RequestInterface $request;
|
||||
|
||||
public function __construct(
|
||||
private readonly DocumentLockManagerInterface $documentLockManager,
|
||||
private readonly EntityManagerInterface $entityManager,
|
||||
private DocumentLockManagerInterface $documentLockManager,
|
||||
private EntityManagerInterface $entityManager,
|
||||
HttpMessageFactoryInterface $httpMessageFactory,
|
||||
private readonly Psr17Interface $psr17,
|
||||
private Psr17Interface $psr17,
|
||||
RequestStack $requestStack,
|
||||
private readonly StoredObjectManagerInterface $storedObjectManager,
|
||||
private readonly StoredObjectRepository $storedObjectRepository
|
||||
private StoredObjectManagerInterface $storedObjectManager,
|
||||
private StoredObjectRepository $storedObjectRepository
|
||||
) {
|
||||
$this->request = $httpMessageFactory->createRequest($requestStack->getCurrentRequest());
|
||||
}
|
||||
|
Reference in New Issue
Block a user