YamlReader::readRaw()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 7
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 1
crap 6
1
<?php
2
/**
3
 * Composer plugin for config assembling
4
 *
5
 * @link      https://github.com/hiqdev/composer-config-plugin
6
 * @package   composer-config-plugin
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2016-2018, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hiqdev\composer\config\readers;
12
13
use hiqdev\composer\config\exceptions\UnsupportedFileTypeException;
14
15
/**
16
 * YamlReader - reads YAML files.
17
 *
18
 * @author Andrii Vasyliev <[email protected]>
19
 */
20
class YamlReader extends AbstractReader
21
{
22
    public function readRaw($path)
23
    {
24
        if (!class_exists('Symfony\Component\Yaml\Yaml')) {
25
            throw new UnsupportedFileTypeException('for YAML support require `symfony/yaml` in your composer.json');
26
        }
27
28
        return \Symfony\Component\Yaml\Yaml::parse($this->getFileContents($path));
0 ignored issues
show
Bug introduced by
The type Symfony\Component\Yaml\Yaml was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
29
    }
30
}
31