UniqueId::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 5
rs 10
cc 1
nc 1
nop 0
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