diff options
author | Umherirrender <umherirrender_de.wp@web.de> | 2018-06-26 23:14:43 +0200 |
---|---|---|
committer | Krinkle <krinklemail@gmail.com> | 2018-07-07 00:34:30 +0000 |
commit | 130ec2523df12a3ca2fe0d422163696d09fcea08 (patch) | |
tree | 86c3a24a8c09c3e55272839ec2ee51fc1432e16b /tests/phpunit/includes/api/query/ApiQueryTestBase.php | |
parent | de5c5cd356e081023690eddca1ded3ffe85e2cbe (diff) | |
download | mediawikicore-130ec2523df12a3ca2fe0d422163696d09fcea08.tar.gz mediawikicore-130ec2523df12a3ca2fe0d422163696d09fcea08.zip |
Fix PhanTypeMismatchDeclaredParam
Auto fix MediaWiki.Commenting.FunctionComment.DefaultNullTypeParam sniff
Change-Id: I865323fd0295aabd06f3e3c75e0e5043fb31069e
Diffstat (limited to 'tests/phpunit/includes/api/query/ApiQueryTestBase.php')
-rw-r--r-- | tests/phpunit/includes/api/query/ApiQueryTestBase.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/phpunit/includes/api/query/ApiQueryTestBase.php b/tests/phpunit/includes/api/query/ApiQueryTestBase.php index e7588cb5dce8..08af755d8bf2 100644 --- a/tests/phpunit/includes/api/query/ApiQueryTestBase.php +++ b/tests/phpunit/includes/api/query/ApiQueryTestBase.php @@ -87,9 +87,9 @@ STR; * Checks that the request's result matches the expected results. * Assumes no rawcontinue and a complete batch. * @param array $values Array is a two element array( request, expected_results ) - * @param array $session + * @param array|null $session * @param bool $appendModule - * @param User $user + * @param User|null $user */ protected function check( $values, array $session = null, $appendModule = false, User $user = null |