Skip to content

Commit

Permalink
fix spacing after spread operator
Browse files Browse the repository at this point in the history
  • Loading branch information
reykjalin committed Mar 21, 2024
1 parent 3c95b05 commit 5d16a92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/unit/src/Internal/Payment/State/InitialStateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ protected function setUp(): void {
$this->mock_failed_transaction_rate_limiter = $this->createMock( FailedTransactionRateLimiter::class ),
];

$this->sut = new InitialState( ... $this->mock_deps );
$this->sut = new InitialState( ...$this->mock_deps );
$this->sut->set_context( $this->mock_context );

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ protected function setUp(): void {
$this->mock_legacy_proxy,
];

$this->sut = new DuplicatePaymentPreventionService( ... $this->deps );
$this->sut = new DuplicatePaymentPreventionService( ...$this->deps );
}

public function test_init_hooks() {
Expand Down

0 comments on commit 5d16a92

Please sign in to comment.