Skip to content

Commit

Permalink
Remove final from some classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
herbertroth committed Sep 25, 2023
1 parent 760dafa commit d013d08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Proxy/Events/ProxyPostInterceptor.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
use Pimcore\Bundle\StaticResolverBundle\Proxy\Exceptions\ReadOnlyException;
use Symfony\Component\EventDispatcher\GenericEvent;

final class ProxyPostInterceptor extends GenericEvent implements ProxyPostInterceptorInterface
class ProxyPostInterceptor extends GenericEvent implements ProxyPostInterceptorInterface
{
use GetMethodBasics;

Expand Down
2 changes: 1 addition & 1 deletion src/Proxy/Events/ProxyPreInterceptor.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
use ReflectionUnionType;
use Symfony\Component\EventDispatcher\GenericEvent;

final class ProxyPreInterceptor extends GenericEvent implements ProxyPreInterceptorInterface
class ProxyPreInterceptor extends GenericEvent implements ProxyPreInterceptorInterface
{
use GetMethodBasics;

Expand Down

0 comments on commit d013d08

Please sign in to comment.