Issues (7)

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

1
<?php
2
3
declare(strict_types=1);
4
5
use function Bytic\Phpqa\PhpCsFixer\config;
0 ignored issues
show
The function Bytic\Phpqa\PhpCsFixer\config was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
6
use function Bytic\Phpqa\PhpCsFixer\finder;
0 ignored issues
show
The function Bytic\Phpqa\PhpCsFixer\finder was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
7
8
return config(
9
    finder(
10
        [
11
            __DIR__ . '/src',
12
            __DIR__ . '/tests',
13
        ]
14
    )
15
);
16