From 461541250c5ae2af3103f902410882b97ba052c1 Mon Sep 17 00:00:00 2001 From: Ryan Kienstra Date: Wed, 12 Jan 2022 23:25:51 -0600 Subject: [PATCH 1/4] 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; } } From 7a13d3145e00eda340e9f690c40255ebf8d53cad Mon Sep 17 00:00:00 2001 From: Ryan Kienstra Date: Wed, 12 Jan 2022 23:28:57 -0600 Subject: [PATCH 2/4] Change the order back, rename the parameters --- php/src/Example.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php/src/Example.php b/php/src/Example.php index a2a38aa..5f67a88 100644 --- a/php/src/Example.php +++ b/php/src/Example.php @@ -6,8 +6,8 @@ class Example { - public function multiply(int $firstMultiple, int $secondMultiple): int + public function multiply(int $multipleOne, int $multipleTwo): int { - return $secondMultiple * $firstMultiple; + return $multipleOne * $multipleTwo; } } From 7b9b8d5f5ac78c7aef58c1fdbba733d669d03ca3 Mon Sep 17 00:00:00 2001 From: Ryan Kienstra Date: Wed, 12 Jan 2022 23:38:59 -0600 Subject: [PATCH 3/4] Slight change to README.md heading --- README.md | 2 +- php/src/Example.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2e5171f..2a6afad 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Path filtering on CircleCI +# Path filtering in CircleCI Forked from [circle-makotom/circle-advanced-setup-workflow](https://github.com/circle-makotom/circle-advanced-setup-workflow). diff --git a/php/src/Example.php b/php/src/Example.php index 5f67a88..d536ebc 100644 --- a/php/src/Example.php +++ b/php/src/Example.php @@ -6,8 +6,8 @@ class Example { - public function multiply(int $multipleOne, int $multipleTwo): int + public function multiply(int $firstMultiple, int $secondMultiple): int { - return $multipleOne * $multipleTwo; + return $firstMultiple * $secondMultiple; } } From 9a7153da43388b3d3f6ed55e67181e0231935532 Mon Sep 17 00:00:00 2001 From: Ryan Kienstra Date: Wed, 12 Jan 2022 23:40:02 -0600 Subject: [PATCH 4/4] Change the README.md heading --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2a6afad..14260ef 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Path filtering in CircleCI +# Path filtering with CircleCI Forked from [circle-makotom/circle-advanced-setup-workflow](https://github.com/circle-makotom/circle-advanced-setup-workflow).