Passed
Branch master (b34e2b)
by Rait
01:39
created

UniqueId::inject()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
1
<?php
2
3
namespace Raigu\XRoad\SoapEnvelope;
4
5
use Raigu\XRoad\SoapEnvelope\Element\AbstractElement;
6
7
/**
8
 * I am an unique X-Road request id.
9
 *
10
 * I assign a random id to myself upon creation.
11
 * I can inject myself into SOAP envelope header
12
 */
13
final class UniqueId extends AbstractElement
14
{
15
    public function __construct()
16
    {
17
        parent::__construct(
18
            new Id(
19
                bin2hex(random_bytes(16))
20
            )
21
        );
22
    }
23
}
24