Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
24 | 1 | public function createProxy( |
|
25 | string $className, |
||
26 | \Closure $initializer, |
||
27 | array $proxyOptions = [] |
||
28 | ) : VirtualProxyInterface { |
||
29 | 1 | $proxyClassName = $this->generateProxy($className, $proxyOptions); |
|
30 | |||
31 | 1 | return $proxyClassName::staticProxyConstructor($initializer); |
|
32 | } |
||
33 | |||
42 |