From 16efcedd95ad4547c964a7488a1f85cd51076aa5 Mon Sep 17 00:00:00 2001 From: Herbert Roth Date: Fri, 22 Sep 2023 08:53:47 +0200 Subject: [PATCH] Fix CS problems. --- src/Proxy/Events/ProxyPostInterceptor.php | 3 ++- src/Proxy/Events/ProxyPreInterceptor.php | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Proxy/Events/ProxyPostInterceptor.php b/src/Proxy/Events/ProxyPostInterceptor.php index 5fba1db..771e614 100644 --- a/src/Proxy/Events/ProxyPostInterceptor.php +++ b/src/Proxy/Events/ProxyPostInterceptor.php @@ -20,7 +20,8 @@ use Pimcore\Bundle\StaticResolverBundle\Proxy\Exceptions\ReadOnlyException; use Symfony\Component\EventDispatcher\GenericEvent; -class ProxyPostInterceptor extends GenericEvent implements ProxyPostInterceptorInterface, MethodeArgumentsInterceptorInterface +class ProxyPostInterceptor extends GenericEvent + implements ProxyPostInterceptorInterface, MethodeArgumentsInterceptorInterface { use GetMethodBasics; diff --git a/src/Proxy/Events/ProxyPreInterceptor.php b/src/Proxy/Events/ProxyPreInterceptor.php index e8e8b94..e1cc0ec 100644 --- a/src/Proxy/Events/ProxyPreInterceptor.php +++ b/src/Proxy/Events/ProxyPreInterceptor.php @@ -24,7 +24,8 @@ use ReflectionUnionType; use Symfony\Component\EventDispatcher\GenericEvent; -class ProxyPreInterceptor extends GenericEvent implements ProxyPreInterceptorInterface, MethodeArgumentsInterceptorInterface +class ProxyPreInterceptor extends GenericEvent + implements ProxyPreInterceptorInterface, MethodeArgumentsInterceptorInterface { use GetMethodBasics;