wiki.techinc.nl/tests/phpunit/includes/page/WikiPageMcrWriteBothDbTest.php
Thiemo Kreuz 8a4e15db7f Add missing newline between <?php and namespace/use section
The rest of the codebase is using this code formatting standard.

Change-Id: I4d2ba61757a7e28d40096d9dc5915005c340d4f2
2019-06-03 13:36:48 +00:00

24 lines
452 B
PHP

<?php
use MediaWiki\Tests\Revision\McrWriteBothSchemaOverride;
/**
* Tests WikiPage against the intermediate MCR DB schema for use during schema migration.
*
* @covers WikiPage
*
* @group WikiPage
* @group Storage
* @group ContentHandler
* @group Database
* @group medium
*/
class WikiPageMcrWriteBothDbTest extends WikiPageDbTestBase {
use McrWriteBothSchemaOverride;
protected function getContentHandlerUseDB() {
return true;
}
}