From aaf266db42588fb6e66f9703e08b1ecbbfb53af7 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 17 Mar 2019 12:22:10 +0000 Subject: [PATCH] Docs: Correct `@param` name in `setExpectedIncorrectUsage()` DocBlock. Props yoavf. Fixes #46546. git-svn-id: https://develop.svn.wordpress.org/trunk@44922 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/includes/abstract-testcase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/phpunit/includes/abstract-testcase.php b/tests/phpunit/includes/abstract-testcase.php index 60af252f02..87ee80f947 100644 --- a/tests/phpunit/includes/abstract-testcase.php +++ b/tests/phpunit/includes/abstract-testcase.php @@ -519,8 +519,8 @@ abstract class WP_UnitTestCase_Base extends PHPUnit_Framework_TestCase { * * @since 4.2.0 * - * @param string $deprecated Name of the function, method, or class that appears in the first argument of the - * source `_doing_it_wrong()` call. + * @param string $doing_it_wrong Name of the function, method, or class that appears in the first argument of the + * source `_doing_it_wrong()` call. */ public function setExpectedIncorrectUsage( $doing_it_wrong ) { $this->expected_doing_it_wrong[] = $doing_it_wrong;