From ae0a23004650ac3c7598f354064a0fd8125ac39d Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Wed, 6 Sep 2023 11:48:53 +0100 Subject: [PATCH] chore: improves readability --- src/Support/Str.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Support/Str.php b/src/Support/Str.php index 35b109c3..c0c5a51b 100644 --- a/src/Support/Str.php +++ b/src/Support/Str.php @@ -94,10 +94,10 @@ final class Str } /** - * Creates a describe block as `$right` → `$left` format. + * Creates a describe block as `$describeDescription` → `$testDescription` format. */ - public static function describe(string $right, string $left): string + public static function describe(string $describeDescription, string $testDescription): string { - return sprintf('`%s` → %s', $right, $left); + return sprintf('`%s` → %s', $describeDescription, $testDescription); } }