Passed
Push — master ( f27e95...6a73f4 )
by Chema
08:35 queued 11s
created

EdifactParser   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 10
dl 0
loc 32
ccs 12
cts 12
cp 1
rs 10
c 0
b 0
f 0
wmc 5

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A create() 0 3 1
A parse() 0 12 2
A __clone() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace EdifactParser;
6
7
use EDI\Parser;
8
use EdifactParser\Exception\InvalidFile;
9
10
use EdifactParser\Segments\SegmentFactory;
11
use EdifactParser\Segments\SegmentFactoryInterface;
12
13
/** @psalm-immutable */
14
final class EdifactParser
15
{
16
    private SegmentFactoryInterface $segmentFactory;
17
18 4
    public static function create(?SegmentFactoryInterface $segmentFactory = null): self
19
    {
20 4
        return new self($segmentFactory ?? new SegmentFactory());
21
    }
22
23 4
    private function __construct(SegmentFactoryInterface $segmentFactory)
24
    {
25 4
        $this->segmentFactory = $segmentFactory;
26 4
    }
27
28
    /** @codeCoverageIgnore */
29
    private function __clone()
30
    {
31
    }
32
33
    /** @psalm-return list<TransactionMessage> */
34 4
    public function parse(string $fileContent): array
35
    {
36 4
        $parser = new Parser($fileContent);
37 4
        $errors = $parser->errors();
38
39 4
        if ($errors) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $errors of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
40 1
            throw InvalidFile::withErrors($errors);
41
        }
42
43 3
        $segments = SegmentList::factory($this->segmentFactory)->fromRaw($parser->get());
44
45 3
        return TransactionMessage::groupSegmentsByMessage(...$segments);
46
    }
47
}
48