The issue is that if watching multiple directories via the Finder class. If one does not exist, the Finder will throw an exception and the fixer will die.
$finder = Finder::create()
->in([
__DIR__ . '/web/app/mu-plugins/ys-*',
__DIR__ . '/web/app/plugins/ys-*'
])
->name('*.php')
->ignoreDotFiles(true)
->ignoreVCS(true);
Is there a possibility of adding an option to "skip if directory does not exist" so it doesn't kill the fixer if one of the directories does not exist?