| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 27 | public function create(array $knownData = []): Proxy |
||
| 28 | { |
||
| 29 | try { |
||
| 30 | return $this->deserializer->from([ |
||
| 31 | 'loader' => $this->loader, |
||
| 32 | 'knownData' => $knownData, |
||
| 33 | ]); |
||
| 34 | } catch (CannotDeserialize $exception) { |
||
| 35 | throw ProxyDeserializationFailed::encountered($exception); |
||
| 36 | } |
||
| 39 |