Completed
Pull Request — master (#591)
by thomas
20:21
created

BlockHeaderFactory::fromBuffer()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 4
ccs 2
cts 2
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace BitWasp\Bitcoin\Block;
6
7
use BitWasp\Bitcoin\Serializer\Block\BlockHeaderSerializer;
8
use BitWasp\Buffertools\Buffer;
9
use BitWasp\Buffertools\BufferInterface;
10
11
class BlockHeaderFactory
12
{
13
    /**
14
     * @param string $string
15
     * @return BlockHeaderInterface
16
     * @throws \BitWasp\Buffertools\Exceptions\ParserOutOfRange
17
     * @throws \Exception
18
     */
19 4
    public static function fromHex(string $string): BlockHeaderInterface
20
    {
21 4
        return self::fromBuffer(Buffer::hex($string));
22
    }
23
24
    /**
25
     * @param BufferInterface $buffer
26
     * @return BlockHeaderInterface
27
     * @throws \BitWasp\Buffertools\Exceptions\ParserOutOfRange
28
     */
29 4
    public static function fromBuffer(BufferInterface $buffer): BlockHeaderInterface
30
    {
31 4
        return (new BlockHeaderSerializer())->parse($buffer);
32
    }
33
}
34