Skip to content

Commit

Permalink
No longer accept -v (it did not have an effect anymore since PHPUnit …
Browse files Browse the repository at this point in the history
…10.0.0)
  • Loading branch information
sebastianbergmann committed Jul 9, 2023
1 parent b1e0ddc commit 829bf8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog-10.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ All notable changes of the PHPUnit 10.2 release series are documented in this fi
### Fixed

* `--warm-coverage-cache` does not work
* The short option `-v` (short for `--verbose`) was still accepted by the test runner, but no longer had an effect since `--verbose` was removed in PHPUnit 10.0

## [10.2.3] - 2023-06-30

Expand Down
2 changes: 1 addition & 1 deletion src/TextUI/Configuration/Cli/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ final class Builder
'log-events-verbose-text=',
'version',
];
private const SHORT_OPTIONS = 'd:c:hv';
private const SHORT_OPTIONS = 'd:c:h';

/**
* @throws Exception
Expand Down

0 comments on commit 829bf8d

Please sign in to comment.