Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.0416 |
Changes | 0 |
1 | <?php |
||
20 | 2 | public static function create() : Packer |
|
21 | { |
||
22 | 2 | if (\class_exists(BufferUnpacker::class)) { |
|
23 | 1 | return new PurePacker(); |
|
24 | } |
||
25 | |||
26 | 1 | if (\extension_loaded('msgpack')) { |
|
27 | 1 | return new PeclPacker(); |
|
28 | } |
||
29 | |||
30 | throw new \Error('None of the supported msgpack packages were found. To install one, run "composer require rybakit/msgpack".'); |
||
31 | } |
||
33 |