UniqueId   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 4
c 1
b 0
f 0
dl 0
loc 7
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
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