diff options
Diffstat (limited to 'tests/phpunit/includes/api/query/ApiQueryTestBase.php')
-rw-r--r-- | tests/phpunit/includes/api/query/ApiQueryTestBase.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/phpunit/includes/api/query/ApiQueryTestBase.php b/tests/phpunit/includes/api/query/ApiQueryTestBase.php index 555c51fa416e..53189fb93e0f 100644 --- a/tests/phpunit/includes/api/query/ApiQueryTestBase.php +++ b/tests/phpunit/includes/api/query/ApiQueryTestBase.php @@ -1,4 +1,5 @@ <?php + /** * Copyright © 2013 Yuri Astrakhan "<Firstname><Lastname>@gmail.com" * @@ -20,11 +21,15 @@ * @file */ +namespace MediaWiki\Tests\Api\Query; + +use MediaWiki\Tests\Api\ApiTestCase; use MediaWiki\User\User; use PHPUnit\Framework\ExpectationFailedException; use SebastianBergmann\Comparator\ComparisonFailure; -/** This class has some common functionality for testing query module +/** + * This class has some common functionality for testing query module */ abstract class ApiQueryTestBase extends ApiTestCase { @@ -152,3 +157,5 @@ STR; return array_merge( $result ); } } + +class_alias( ApiQueryTestBase::class, 'ApiQueryTestBase' ); |