Completed
Pull Request — master (#591)
by thomas
22:54 queued 09:12
created

BlockHeaderFactory   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 100%

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A fromHex() 0 4 1
A fromBuffer() 0 4 1
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