Completed
Push — master ( e0e563...147295 )
by Eugene
04:27
created

MessagePack::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 3
ccs 0
cts 0
cp 0
rs 10
cc 1
eloc 1
nc 1
nop 0
crap 2
1
<?php
2
3
/*
4
 * This file is part of the rybakit/msgpack.php package.
5
 *
6
 * (c) Eugene Leonovich <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace MessagePack;
13
14
final class MessagePack
15
{
16
    /**
17
     * @param mixed $value
18
     * @param int|null $typeDetectionMode
19
     *
20
     * @return string
21
     *
22
     * @throws \InvalidArgumentException|\MessagePack\Exception\PackingFailedException
23
     */
24 2
    public static function pack($value, $typeDetectionMode = null)
25
    {
26 2
        return (new Packer($typeDetectionMode))->pack($value);
27
    }
28
29
    /**
30
     * @param string $data
31
     * @param int|null $intOverflowMode
32
     *
33
     * @return mixed
34
     *
35
     * @throws \MessagePack\Exception\UnpackingFailedException
36
     */
37 2
    public static function unpack($data, $intOverflowMode = null)
38
    {
39 2
        return (new BufferUnpacker($intOverflowMode))->reset($data)->unpack();
40
    }
41
42
    /**
43
     * @codeCoverageIgnore
44
     */
45
    private function __construct()
46
    {
47
    }
48
}
49