Skip to content

Commit

Permalink
Fix hasRandomOrderSeer -> hasRandomOrderSeed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Slamdunk authored and sebastianbergmann committed Oct 16, 2020
1 parent 74af26c commit 20c6850
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/TextUI/CliArguments/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -1641,7 +1641,7 @@ public function processIsolation(): bool
return $this->processIsolation;
}

public function hasRandomOrderSeer(): bool
public function hasRandomOrderSeed(): bool
{
return $this->randomOrderSeed !== null;
}
Expand Down
2 changes: 1 addition & 1 deletion src/TextUI/CliArguments/Mapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ public function mapToLegacyArray(Configuration $arguments): array
$result['coverageFilter'] = $arguments->coverageFilter();
}

if ($arguments->hasRandomOrderSeer()) {
if ($arguments->hasRandomOrderSeed()) {
$result['randomOrderSeed'] = $arguments->randomOrderSeed();
}

Expand Down

0 comments on commit 20c6850

Please sign in to comment.