Passed
Push — master ( 052fdd...34a993 )
by Zaahid
09:48 queued 07:09
created

.php-cs-fixer.dist.php (1 issue)

Labels
Severity
1
<?php
2
/*
3
 * This document has been generated with
4
 * https://mlocati.github.io/php-cs-fixer-configurator/#version:3.0.0-rc.1|configurator
5
 * you can change this configuration by importing this file.
6
 *
7
 */
8
9
$config = include 'PhpCsFixer.php';
10
11
return $config->setFinder(PhpCsFixer\Finder::create()
0 ignored issues
show
The type PhpCsFixer\Finder 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...
12
    ->exclude('vendor')
13
    ->in(__DIR__.'\src')
14
    ->in(__DIR__.'\tests')
15
    );
16