Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
8 | final class DeserializingProxyFactory implements ProxyFactory |
||
9 | { |
||
10 | private $deserializer; |
||
11 | private $loader; |
||
12 | |||
13 | private function __construct(Deserializes $deserializer, ProxyLoader $loader) |
||
17 | } |
||
18 | |||
19 | public static function using( |
||
24 | } |
||
25 | |||
26 | /** @inheritdoc */ |
||
27 | public function create(array $knownData = []): Proxy |
||
39 |