diff --git a/tests/Unit/Value/ValueTest.php b/tests/Unit/Value/ValueTest.php index 380a2ebb..ad7f5765 100644 --- a/tests/Unit/Value/ValueTest.php +++ b/tests/Unit/Value/ValueTest.php @@ -28,17 +28,12 @@ final class ValueTest extends TestCase */ public static function provideArithmeticOperator(): array { - $units = ['+', '-', '*', '/']; - - return \array_combine( - $units, - \array_map( - static function (string $unit): array { - return [$unit]; - }, - $units - ) - ); + return [ + '+' => ['+'], + '-' => ['-'], + '*' => ['*'], + '/' => ['/'], + ]; } /**