Issues (7)

.php-cs-fixer.dist.php (2 issues)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
use function Bytic\Phpqa\PhpCsFixer\config;
6
use function Bytic\Phpqa\PhpCsFixer\finder;
7
8
return config(
0 ignored issues
show
The function config was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

8
return /** @scrutinizer ignore-call */ config(
Loading history...
9
    finder(
0 ignored issues
show
The function finder was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

9
    /** @scrutinizer ignore-call */ 
10
    finder(
Loading history...
10
        [
11
            __DIR__ . '/src',
12
            __DIR__ . '/tests',
13
        ]
14
    )
15
);
16