Passed
Push — main ( f66402...3f489b )
by Carlos C
02:36 queued 11s
created

CancelledDocument::documentStatus()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace PhpCfdi\Finkok\Services\Cancel;
6
7
use stdClass;
8
9
class CancelledDocument
10
{
11
    /** @var stdClass */
12
    private $data;
13
14 10
    public function __construct(stdClass $raw)
15
    {
16 10
        $this->data = $raw;
17 10
    }
18
19 7
    private function get(string $keyword): string
20
    {
21 7
        return strval($this->data->{$keyword} ?? '');
22
    }
23
24 7
    public function uuid(): string
25
    {
26 7
        return $this->get('UUID');
27
    }
28
29 1
    public function documentStatus(): string
30
    {
31 1
        return $this->get('EstatusUUID');
32
    }
33
34 1
    public function cancellationStatus(): string
35
    {
36 1
        return $this->get('EstatusCancelacion');
37
    }
38
39
    /** @return array<mixed> */
40 2
    public function values(): array
41
    {
42 2
        return (array) $this->data;
43
    }
44
}
45