We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7b6c66 commit 3823c97Copy full SHA for 3823c97
src/Application/ApplicationFileProcessor.php
@@ -58,14 +58,15 @@ public function __construct(
58
public function run(Configuration $configuration, InputInterface $input): ProcessResult
59
{
60
$filePaths = $this->filesFinder->findFilesInPaths($configuration->getPaths(), $configuration);
61
- $this->missConfigurationReporter->reportVendorInPaths($filePaths);
62
- $this->missConfigurationReporter->reportStartWithShortOpenTag();
63
64
// no files found
65
if ($filePaths === []) {
66
return new ProcessResult([], []);
67
}
68
+ $this->missConfigurationReporter->reportVendorInPaths($filePaths);
+ $this->missConfigurationReporter->reportStartWithShortOpenTag();
69
+
70
$this->configureCustomErrorHandler();
71
72
/**
0 commit comments