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

MessagePack   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 35
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 3
c 1
b 0
f 0
lcom 0
cbo 2
dl 0
loc 35
ccs 4
cts 4
cp 1
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A pack() 0 4 1
A unpack() 0 4 1
A __construct() 0 3 1
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