[Behat] Add missing return type

This commit is contained in:
Grzegorz Sadowski 2021-08-03 11:00:09 +02:00
parent 5420787613
commit eca592293b
No known key found for this signature in database
GPG key ID: EF87FF4E6E3BD364

View file

@ -264,7 +264,7 @@ final class ManagingOrdersContext implements Context
/**
* @Then /^the order's tax total should(?:| still) be ("[^"]+")$/
*/
public function theOrdersTaxTotalShouldBe(int $taxTotal)
public function theOrdersTaxTotalShouldBe(int $taxTotal): void
{
Assert::same($this->responseChecker->getValue($this->client->getLastResponse(), 'taxTotal'), $taxTotal);
}