| Total Complexity | 4 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 14 | final class BasicProxyFactory implements ProxyFactory |
||
| 15 | { |
||
| 16 | private $class; |
||
| 17 | private $loader; |
||
| 18 | |||
| 19 | private function __construct( |
||
| 29 | )); |
||
| 30 | } |
||
| 31 | } |
||
| 32 | |||
| 33 | public static function for(string $class, ProxyLoader $loader): ProxyFactory |
||
| 34 | { |
||
| 35 | return new self($class, $loader); |
||
| 36 | } |
||
| 37 | |||
| 38 | public function create(array $knownData = []): Proxy |
||
| 41 | } |
||
| 42 | } |
||
| 43 |