LibYamlFrontMatterParser   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 27
Duplicated Lines 0 %

Test Coverage

Coverage 54.55%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 10
c 1
b 0
f 0
dl 0
loc 27
ccs 6
cts 11
cp 0.5455
rs 10
wmc 5

2 Methods

Rating   Name   Duplication   Size   Complexity  
A parse() 0 13 3
A capable() 0 7 2
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the league/commonmark package.
7
 *
8
 * (c) Colin O'Dell <[email protected]>
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace League\CommonMark\Extension\FrontMatter\Data;
15
16
use League\CommonMark\Exception\MissingDependencyException;
17
use League\CommonMark\Extension\FrontMatter\Exception\InvalidFrontMatterException;
18
19
final class LibYamlFrontMatterParser implements FrontMatterDataParserInterface
20
{
21
    public static function capable(): ?LibYamlFrontMatterParser
22
    {
23
        if (! \extension_loaded('yaml')) {
24
            return null;
25
        }
26
27
        return new LibYamlFrontMatterParser();
28
    }
29
30
    /**
31
     * {@inheritDoc}
32
     */
33 10
    public function parse(string $frontMatter)
34
    {
35 10
        if (! \extension_loaded('yaml')) {
36
            throw new MissingDependencyException('Failed to parse yaml: "ext-yaml" extension is missing');
37
        }
38
39 10
        $result = @\yaml_parse($frontMatter);
40
41 10
        if ($result === false) {
42 2
            throw new InvalidFrontMatterException('Failed to parse front matter');
43
        }
44
45 8
        return $result;
46
    }
47
}
48