PackingFailedException   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 3
c 1
b 0
f 0
dl 0
loc 9
ccs 3
cts 3
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A unsupportedType() 0 4 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\Exception;
13
14
class PackingFailedException extends \RuntimeException
15
{
16
    /**
17
     * @param mixed $value
18
     */
19 3
    public static function unsupportedType($value) : self
20
    {
21 3
        return new self(\sprintf('Unsupported type "%s", maybe you forgot to register the type transformer or extension?',
22 3
            \is_object($value) ? \get_class($value) : \gettype($value)
23 3
        ));
24
    }
25
}
26