Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
37 | 3 | public static function forVersion($version, array $knownVersions, Exception $cause = null) |
|
38 | { |
||
39 | 3 | usort($knownVersions, 'version_compare'); |
|
40 | |||
41 | 3 | return new static(sprintf( |
|
42 | 'Cannot process JSON at version %s. The supported versions '. |
||
43 | 3 | 'are %s.', |
|
44 | $version, |
||
45 | 3 | implode(', ', $knownVersions) |
|
46 | 3 | ), 0, $cause); |
|
47 | } |
||
48 | } |
||
49 |