Passed
Pull Request — master (#22)
by Dmitriy
28:42 queued 13:51
created

YamlReader   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 4
dl 0
loc 9
c 0
b 0
f 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A readRaw() 0 7 2
1
<?php
2
3
namespace Yiisoft\Composer\Config\Reader;
4
5
use Symfony\Component\Yaml\Yaml;
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...
6
use Yiisoft\Composer\Config\Exception\UnsupportedFileTypeException;
7
8
/**
9
 * YamlReader - reads YAML files.
10
 */
11
class YamlReader extends AbstractReader
12
{
13
    protected function readRaw($path)
14
    {
15
        if (!class_exists(Yaml::class)) {
16
            throw new UnsupportedFileTypeException("for YAML support require `symfony/yaml` in your composer.json (reading $path)");
17
        }
18
19
        return Yaml::parse($this->getFileContents($path));
20
    }
21
}
22