The rest of the codebase is using this code formatting standard. Change-Id: I4d2ba61757a7e28d40096d9dc5915005c340d4f2
24 lines
452 B
PHP
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;
|
|
}
|
|
|
|
}
|