* $interceptor = function ($proxy, $instance, string $method, array $params, & $returnEarly) {}; * * * @param string $methodName name of the intercepted method * @param Closure|null $prefixInterceptor interceptor closure or null to unset the currently active interceptor * @psalm-param null|Closure( * InterceptedObjectType&AccessInterceptorInterface=, * InterceptedObjectType=, * string=, * array=, * bool= * ) : mixed $prefixInterceptor */ public function setMethodPrefixInterceptor(string $methodName, ?Closure $prefixInterceptor = null): void; /** * Set or remove the suffix interceptor for a method * * @link https://github.com/Ocramius/ProxyManager/blob/master/docs/access-interceptor-value-holder.md * * A prefix interceptor should have a signature like following: * * * $interceptor = function ($proxy, $instance, string $method, array $params, $returnValue, & $returnEarly) {}; * * * @param string $methodName name of the intercepted method * @param Closure|null $suffixInterceptor interceptor closure or null to unset the currently active interceptor * @psalm-param null|Closure( * InterceptedObjectType&AccessInterceptorInterface=, * InterceptedObjectType=, * string=, * array=, * mixed=, * bool= * ) : mixed $suffixInterceptor */ public function setMethodSuffixInterceptor(string $methodName, ?Closure $suffixInterceptor = null): void; }