From 461541250c5ae2af3103f902410882b97ba052c1 Mon Sep 17 00:00:00 2001 From: Ryan Kienstra Date: Wed, 12 Jan 2022 23:25:51 -0600 Subject: [PATCH] Change the order of multiplication in PHP file --- php/src/Example.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/src/Example.php b/php/src/Example.php index d536ebc..a2a38aa 100644 --- a/php/src/Example.php +++ b/php/src/Example.php @@ -8,6 +8,6 @@ class Example { public function multiply(int $firstMultiple, int $secondMultiple): int { - return $firstMultiple * $secondMultiple; + return $secondMultiple * $firstMultiple; } }