MediaWiki  master
MovePageFactory.php
Go to the documentation of this file.
1 <?php
21 namespace MediaWiki\Page;
22 
24 
32 interface MovePageFactory {
33 
39  public function newMovePage( Title $from, Title $to ): MovePage;
40 }
Handles the backend logic of moving a page from one title to another.
Definition: MovePage.php:66
Represents a title within MediaWiki.
Definition: Title.php:82
Service for page rename actions.
newMovePage(Title $from, Title $to)