diff --git a/ChangeLog-10.2.md b/ChangeLog-10.2.md index b05a54316b9..dbe7959967a 100644 --- a/ChangeLog-10.2.md +++ b/ChangeLog-10.2.md @@ -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 diff --git a/src/TextUI/Configuration/Cli/Builder.php b/src/TextUI/Configuration/Cli/Builder.php index 97239fc9edc..b1cbda8ef45 100644 --- a/src/TextUI/Configuration/Cli/Builder.php +++ b/src/TextUI/Configuration/Cli/Builder.php @@ -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