Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
19 | 5 | public static function parserConfig(): ParserConfig |
|
20 | { |
||
21 | 5 | return (new ParserConfig()) |
|
22 | 5 | ->setGroupSeparator(Constants::GROUP_SEPARATOR_SYMBOL) |
|
23 | 5 | ->setFnc1SequenceRequired(false) |
|
24 | 5 | ->setKnownAIs([ |
|
25 | 5 | self::AI_GTIN, |
|
26 | 5 | self::AI_SERIAL, |
|
27 | 5 | self::AI_TNVED, |
|
28 | 5 | self::AI_CRYPTO, |
|
29 | 5 | self::AI_VALIDATION, |
|
30 | ]); |
||
31 | } |
||
32 | |||
44 | } |