Skip to content

Commit 9cd97ab

Browse files
committed
Fix error message
1 parent 74b909a commit 9cd97ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Command/CommandHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ public static function begin(
221221
if ($singleReflectionInsteadOfFile !== null) {
222222
$singleReflectionInsteadOfFile = $currentWorkingDirectoryFileHelper->normalizePath($currentWorkingDirectoryFileHelper->absolutizePath($singleReflectionInsteadOfFile));
223223
if (!is_file($singleReflectionInsteadOfFile)) {
224-
$errorOutput->writeLineFormatted(sprintf('File passed to <fg=cyan>--instead-of</> option does not exist: <error>%s</error>', $singleReflectionFile));
224+
$errorOutput->writeLineFormatted(sprintf('File passed to <fg=cyan>--instead-of</> option does not exist: <error>%s</error>', $singleReflectionInsteadOfFile));
225225
throw new InceptionNotSuccessfulException();
226226
}
227227

0 commit comments

Comments
 (0)