diff --git a/src/Module/Core/Infrastructure/ApiPlatform/State/Processor/UserPasswordHasherProcessor.php b/src/Module/Core/Infrastructure/ApiPlatform/State/Processor/UserPasswordHasherProcessor.php index 92fb4e2..c45d529 100644 --- a/src/Module/Core/Infrastructure/ApiPlatform/State/Processor/UserPasswordHasherProcessor.php +++ b/src/Module/Core/Infrastructure/ApiPlatform/State/Processor/UserPasswordHasherProcessor.php @@ -13,7 +13,7 @@ use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface; /** * @implements ProcessorInterface */ -class UserPasswordHasherProcessor implements ProcessorInterface +final class UserPasswordHasherProcessor implements ProcessorInterface { public function __construct( #[Autowire(service: 'api_platform.doctrine.orm.state.persist_processor')] diff --git a/src/Module/Core/Infrastructure/ApiPlatform/State/Provider/MeProvider.php b/src/Module/Core/Infrastructure/ApiPlatform/State/Provider/MeProvider.php index ea088c8..ab62c08 100644 --- a/src/Module/Core/Infrastructure/ApiPlatform/State/Provider/MeProvider.php +++ b/src/Module/Core/Infrastructure/ApiPlatform/State/Provider/MeProvider.php @@ -11,7 +11,7 @@ use Symfony\Bundle\SecurityBundle\Security; /** * @implements ProviderInterface */ -class MeProvider implements ProviderInterface +final class MeProvider implements ProviderInterface { public function __construct( private readonly Security $security,