1212use Rector \Monitor \RuleProcessor \MetafileProcessor \NoPHPStanBaselineMetafileProcessor ;
1313use Rector \Monitor \RuleProcessor \MissingPackagesRuleProcessor ;
1414use Rector \Monitor \RuleProcessor \TooLowPackagesRulesProcessor ;
15- use Rector \Monitor \ValueObject \Repository ;
1615use Rector \Monitor \ValueObject \RepositoryCollection ;
1716use Symfony \Component \Console \Command \Command ;
1817use Symfony \Component \Console \Input \InputInterface ;
@@ -65,7 +64,10 @@ protected function execute(InputInterface $input, OutputInterface $output): int
6564 $ monitorConfig = $ this ->monitorConfigProvider ->provide ();
6665 $ shouldClearCache = (bool ) $ input ->getOption ('clear-cache ' );
6766
68- $ this ->repositoryMetafilesResolver ->decorateRepositories ($ monitorConfig ->getRepositoryCollection (), $ shouldClearCache );
67+ $ this ->repositoryMetafilesResolver ->decorateRepositories (
68+ $ monitorConfig ->getRepositoryCollection (),
69+ $ shouldClearCache
70+ );
6971
7072 $ this ->symfonyStyle ->title ('Repository analysis report ' );
7173
@@ -76,7 +78,9 @@ protected function execute(InputInterface $input, OutputInterface $output): int
7678
7779 $ composerJson = $ repository ->getComposerJson ();
7880
79- $ this ->symfonyStyle ->writeln (sprintf ('<fg=yellow;options=bold>%d) %s</> ' , $ key +1 , $ composerJson ->getRepositoryName ()));
81+ $ this ->symfonyStyle ->writeln (
82+ sprintf ('<fg=yellow;options=bold>%d) %s</> ' , $ key + 1 , $ composerJson ->getRepositoryName ())
83+ );
8084 foreach ($ this ->ruleProcessors as $ ruleProcessor ) {
8185 $ ruleProcessor ->process ($ monitorConfig , $ composerJson , $ errorCollector );
8286 }
0 commit comments