Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
40 | 20 | public function __invoke( $yaml_content, $yaml_flags = null ) |
|
41 | { |
||
42 | 20 | $flags = is_integer($yaml_flags) ? $yaml_flags : $this->default_yaml_flags; |
|
43 | |||
44 | 20 | $this->logger->info("Parse YAML content", [ |
|
45 | 20 | 'length' => mb_strlen( $yaml_content ), |
|
46 | 16 | 'flags' => $flags |
|
47 | 4 | ]); |
|
48 | |||
49 | 20 | return Yaml::parse($yaml_content, $flags); |
|
50 | } |
||
51 | } |
||
52 |