Skip to content

Commit

Permalink
#5666 - Fixed --no-extensions cli parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert authored and sebastianbergmann committed Jan 15, 2024
1 parent 7e7adbd commit f04979c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TextUI/TestRunner.php
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ private function handleConfiguration(array &$arguments): void
$arguments['excludeGroups'] = array_diff($groupConfiguration->exclude()->asArrayOfStrings(), $groupCliArgs);
}

if (!isset($this->arguments['noExtensions'])) {
if (!isset($arguments['noExtensions'])) {
$extensionHandler = new ExtensionHandler;

foreach ($arguments['configurationObject']->extensions() as $extension) {
Expand Down

0 comments on commit f04979c

Please sign in to comment.