JsonManifestLoader::parse()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 2.032

Importance

Changes 0
Metric Value
dl 0
loc 10
c 0
b 0
f 0
rs 9.4285
ccs 4
cts 5
cp 0.8
cc 2
eloc 5
nc 2
nop 1
crap 2.032
1
<?php
2
3
namespace Rj\FrontendBundle\Manifest\Loader;
4
5
class JsonManifestLoader extends AbstractManifestLoader
6
{
7
    /**
8
     * {@inheritdoc}
9
     */
10 7
    protected function parse($path)
11
    {
12 7
        $entries = json_decode(file_get_contents($path), true);
13
14 7
        if (json_last_error() !== JSON_ERROR_NONE) {
15
            throw new \Exception("Failed to parse json manifest file ($path): ".json_last_error_msg());
16
        }
17
18 7
        return $entries;
19
    }
20
}
21