1 | <?php |
||
19 | class AccessInterceptorValueHolderFactory extends AbstractBaseFactory |
||
20 | { |
||
21 | /** |
||
22 | * @var \ProxyManager\ProxyGenerator\AccessInterceptorValueHolderGenerator|null |
||
23 | */ |
||
24 | private $generator; |
||
25 | |||
26 | /** |
||
27 | * @param object $instance the object to be wrapped within the value holder |
||
28 | * @param \Closure[] $prefixInterceptors an array (indexed by method name) of interceptor closures to be called |
||
29 | * before method logic is executed |
||
30 | * @param \Closure[] $suffixInterceptors an array (indexed by method name) of interceptor closures to be called |
||
31 | * after method logic is executed |
||
32 | * |
||
33 | * @throws InvalidSignatureException |
||
34 | * @throws MissingSignatureException |
||
35 | * @throws \OutOfBoundsException |
||
36 | */ |
||
37 | 1 | public function createProxy( |
|
46 | |||
47 | /** |
||
48 | * {@inheritDoc} |
||
49 | */ |
||
50 | protected function getGenerator() : ProxyGeneratorInterface |
||
54 | } |
||
55 |