Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMorel committed Dec 6, 2020
1 parent bb68fd1 commit 991a050
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/MoneyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -321,12 +321,12 @@ public function providerMultipliedBy() : array
/**
* @dataProvider providerDividedBy
*
* @param array $money The base money.
* @param string $divisor The divisor.
* @param int $roundingMode The rounding mode to use.
* @param string $expected The expected money value, or an exception class name.
* @param array $money The base money.
* @param int|float|string $divisor The divisor.
* @param int $roundingMode The rounding mode to use.
* @param string $expected The expected money value, or an exception class name.
*/
public function testDividedBy(array $money, string $divisor, int $roundingMode, string $expected) : void
public function testDividedBy(array $money, $divisor, int $roundingMode, string $expected) : void
{
$money = Money::of(...$money);

Expand Down

0 comments on commit 991a050

Please sign in to comment.