Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
13 | public static function encountered( |
||
14 | Mapping $mapping, |
||
15 | Throwable $exception |
||
16 | ): MappingFailure { |
||
17 | return new self( |
||
18 | sprintf( |
||
19 | 'Proxy production for in the `%s` property failed: %s', |
||
20 | $mapping->name(), |
||
21 | $exception->getMessage() |
||
22 | ), |
||
23 | 0, |
||
24 | $exception |
||
25 | ); |
||
27 | } |