diff --git a/src/TextUI/CliArguments/Configuration.php b/src/TextUI/CliArguments/Configuration.php index da389138d22..b220dd7aaa6 100644 --- a/src/TextUI/CliArguments/Configuration.php +++ b/src/TextUI/CliArguments/Configuration.php @@ -1641,7 +1641,7 @@ public function processIsolation(): bool return $this->processIsolation; } - public function hasRandomOrderSeer(): bool + public function hasRandomOrderSeed(): bool { return $this->randomOrderSeed !== null; } diff --git a/src/TextUI/CliArguments/Mapper.php b/src/TextUI/CliArguments/Mapper.php index cb697e572cf..9ceb8ab4728 100644 --- a/src/TextUI/CliArguments/Mapper.php +++ b/src/TextUI/CliArguments/Mapper.php @@ -352,7 +352,7 @@ public function mapToLegacyArray(Configuration $arguments): array $result['coverageFilter'] = $arguments->coverageFilter(); } - if ($arguments->hasRandomOrderSeer()) { + if ($arguments->hasRandomOrderSeed()) { $result['randomOrderSeed'] = $arguments->randomOrderSeed(); }