webfactory /
WebfactoryShortcodeBundle
| 1 | <?php |
||
| 2 | |||
| 3 | return (new PhpCsFixer\Config()) |
||
|
0 ignored issues
–
show
|
|||
| 4 | ->setParallelConfig(PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect()) |
||
|
0 ignored issues
–
show
The type
PhpCsFixer\Runner\Parallel\ParallelConfigFactory 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. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths Loading history...
|
|||
| 5 | ->setRules([ |
||
| 6 | '@Symfony' => true, |
||
| 7 | 'phpdoc_separation' => false, |
||
| 8 | '@Symfony:risky' => true, |
||
| 9 | 'array_syntax' => array('syntax' => 'short'), |
||
| 10 | 'no_unreachable_default_argument_value' => false, |
||
| 11 | 'braces' => array('allow_single_line_closure' => true), |
||
| 12 | 'heredoc_to_nowdoc' => false, |
||
| 13 | 'phpdoc_annotation_without_dot' => false, |
||
| 14 | 'php_unit_test_annotation' => ['style' => 'annotation'], |
||
| 15 | 'php_unit_method_casing' => ['case' => 'snake_case'], |
||
| 16 | 'global_namespace_import' => ['import_classes' => true, 'import_constants' => false, 'import_functions' => false], |
||
| 17 | ]) |
||
| 18 | ->setRiskyAllowed(true) |
||
| 19 | ->setFinder( |
||
| 20 | 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. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths Loading history...
|
|||
| 21 | ->in(__DIR__) |
||
| 22 | ->notPath('conf/') |
||
| 23 | ->notPath('tmp/') |
||
| 24 | ->notPath('node_modules/') |
||
| 25 | ->notPath('var/cache') |
||
| 26 | ->notPath('vendor/') |
||
| 27 | ->notPath('tests/Fixtures/cache') |
||
| 28 | ) |
||
| 29 | ; |
||
| 30 |
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:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths