X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=tests%2Fphpunit%2Fincludes%2Fcontent%2FContentHandlerTest.php;h=ee79ffa40f09ee5c687cc01ab419209f36f368d8;hp=a3d1ddac316cac5f2f7b0971e5db7550ffa9b742;hb=5049af1048c77b1ea6ab3193688d23a48ddf8df0;hpb=7dc9d3dacf1faf2a8ffc69e677afe4ea16c4e92e diff --git a/tests/phpunit/includes/content/ContentHandlerTest.php b/tests/phpunit/includes/content/ContentHandlerTest.php index a3d1ddac31..ee79ffa40f 100644 --- a/tests/phpunit/includes/content/ContentHandlerTest.php +++ b/tests/phpunit/includes/content/ContentHandlerTest.php @@ -28,7 +28,7 @@ class ContentHandlerTest extends MediaWikiTestCase { CONTENT_MODEL_CSS => 'CssContentHandler', CONTENT_MODEL_TEXT => 'TextContentHandler', 'testing' => 'DummyContentHandlerForTesting', - 'testing-callbacks' => function( $modelId ) { + 'testing-callbacks' => function ( $modelId ) { return new DummyContentHandlerForTesting( $modelId ); } ], @@ -418,7 +418,7 @@ class ContentHandlerTest extends MediaWikiTestCase { $searchEngine->expects( $this->any() ) ->method( 'makeSearchFieldMapping' ) - ->will( $this->returnCallback( function( $name, $type ) { + ->will( $this->returnCallback( function ( $name, $type ) { return new DummySearchIndexFieldDefinition( $name, $type ); } ) ); @@ -429,7 +429,7 @@ class ContentHandlerTest extends MediaWikiTestCase { * @covers ContentHandler::getDataForSearchIndex */ public function testDataIndexFields() { - $mockEngine = $this->getMock( 'SearchEngine' ); + $mockEngine = $this->createMock( 'SearchEngine' ); $title = Title::newFromText( 'Not_Main_Page', NS_MAIN ); $page = new WikiPage( $title );