* @license MIT */ interface AccessInterceptorInterface extends ProxyInterface { /** * Set or remove the prefix 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: * * * $prefixInterceptor = function ($proxy, $instance, $method, $params, & $returnEarly) {}; * * * @param string $methodName name of the intercepted method * @param \Closure|null $prefixInterceptor interceptor closure or null to unset the currently active interceptor * * @return void */ public function setMethodPrefixInterceptor($methodName, \Closure $prefixInterceptor = null); /** * 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: * * * $suffixInterceptor = function ($proxy, $instance, $method, $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 * * @return void */ public function setMethodSuffixInterceptor($methodName, \Closure $suffixInterceptor = null); }