Skip to content

Commit

Permalink
Fix grammar error
Browse files Browse the repository at this point in the history
  • Loading branch information
ericpoe authored and ondrejmirtes committed Oct 25, 2020
1 parent d23684e commit afeb7bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/CommandHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public static function begin(
}
$includedFilePath = sprintf('%s/%s', $extensionConfig['install_path'], $includedFile);
if (!file_exists($includedFilePath) || !is_readable($includedFilePath)) {
$errorOutput->writeLineFormatted(sprintf('Config file %s does not exists or isn\'t readable', $includedFilePath));
$errorOutput->writeLineFormatted(sprintf('Config file %s does not exist or isn\'t readable', $includedFilePath));
throw new \PHPStan\Command\InceptionNotSuccessfulException();
}
$additionalConfigFiles[] = $includedFilePath;
Expand Down

0 comments on commit afeb7bb

Please sign in to comment.