From 20c68507317cc439e7260b17bb1ede80213d9d64 Mon Sep 17 00:00:00 2001 From: Filippo Tessarotto Date: Fri, 16 Oct 2020 09:49:32 +0200 Subject: [PATCH] Fix hasRandomOrderSeer -> hasRandomOrderSeed typo --- src/TextUI/CliArguments/Configuration.php | 2 +- src/TextUI/CliArguments/Mapper.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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(); }