Skip to content

Commit

Permalink
Fix: Rename parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Sep 22, 2020
1 parent b670189 commit b06a2e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Util/Scenario.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ final class Scenario
*/
private $initialState;

public static function fromCommandInvocationAndInitialState(CommandInvocation $invocationStyle, State $initialState): self
public static function fromCommandInvocationAndInitialState(CommandInvocation $commandInvocation, State $initialState): self
{
$scenario = new self();

$scenario->commandInvocation = $invocationStyle;
$scenario->commandInvocation = $commandInvocation;
$scenario->initialState = $initialState;

return $scenario;
Expand Down

0 comments on commit b06a2e6

Please sign in to comment.