mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-19 07:40:49 +01:00
wording
This commit is contained in:
parent
88f5f5af4c
commit
4614068981
@ -65,7 +65,11 @@ final class ConsoleApplication extends Application
|
||||
if ($newWorkDir !== '') {
|
||||
$oldWorkingDir = getcwd();
|
||||
chdir($newWorkDir);
|
||||
$output->isDebug() && $output->writeln('Changed CWD form ' . $oldWorkingDir . ' to ' . getcwd());
|
||||
|
||||
if ($output->isDebug()) {
|
||||
$message = sprintf('Changed working directory from "%s" to "%s"', $oldWorkingDir, getcwd());
|
||||
$output->writeln($message);
|
||||
}
|
||||
}
|
||||
|
||||
// skip in this case, since generate content must be clear from meta-info
|
||||
|
Loading…
x
Reference in New Issue
Block a user