From 85843a4dd0fb336b001481ae08c4aa5876a93655 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Fri, 29 Aug 2025 20:18:59 +0300 Subject: [PATCH] cs --- application/Espo/EntryPoints/Pdf.php | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/application/Espo/EntryPoints/Pdf.php b/application/Espo/EntryPoints/Pdf.php index 3e907acb8e..127bcfb297 100644 --- a/application/Espo/EntryPoints/Pdf.php +++ b/application/Espo/EntryPoints/Pdf.php @@ -42,14 +42,10 @@ use Espo\Tools\Pdf\Service; class Pdf implements EntryPoint { - private EntityManager $entityManager; - private Service $service; - - public function __construct(EntityManager $entityManager, Service $service) - { - $this->entityManager = $entityManager; - $this->service = $service; - } + public function __construct( + private EntityManager $entityManager, + private Service $service, + ) {} public function run(Request $request, Response $response): void {