Skip to content

Commit

Permalink
code style
Browse files Browse the repository at this point in the history
  • Loading branch information
kkmuffme committed Feb 1, 2024
1 parent e58667e commit a79a275
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/Psalm/Internal/Cli/Psalter.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public static function run(array $argv): void
if ($root_path === false) {
fwrite(
STDERR,
'Could not locate root directory ' . $current_dir . DIRECTORY_SEPARATOR . $options['r'] . PHP_EOL
'Could not locate root directory ' . $current_dir . DIRECTORY_SEPARATOR . $options['r'] . PHP_EOL,
);
exit(1);
}
Expand Down Expand Up @@ -347,7 +347,7 @@ public static function run(array $argv): void
if ($allow_backwards_incompatible_changes === null) {
fwrite(
STDERR,
'--allow-backwards-incompatible-changes expects a boolean value [true|false|1|0]' . PHP_EOL
'--allow-backwards-incompatible-changes expects a boolean value [true|false|1|0]' . PHP_EOL,
);
exit(1);
}
Expand All @@ -366,7 +366,7 @@ public static function run(array $argv): void
if ($doc_block_add_new_line_before_return === null) {
fwrite(
STDERR,
'--add-newline-between-docblock-annotations expects a boolean value [true|false|1|0]' . PHP_EOL
'--add-newline-between-docblock-annotations expects a boolean value [true|false|1|0]' . PHP_EOL,
);
exit(1);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Psalm/Internal/Cli/Refactor.php
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ static function (string $arg) use ($valid_long_options): void {
if ($root_path === false) {
fwrite(
STDERR,
'Could not locate root directory ' . $current_dir . DIRECTORY_SEPARATOR . $options['r'] . PHP_EOL
'Could not locate root directory ' . $current_dir . DIRECTORY_SEPARATOR . $options['r'] . PHP_EOL,
);
exit(1);
}
Expand Down

0 comments on commit a79a275

Please sign in to comment.