MediaWiki REL1_37
MovePageFactory.php
Go to the documentation of this file.
1<?php
2
22namespace MediaWiki\Page;
23
24use MovePage;
25use Title;
26
30interface MovePageFactory {
31
37 public function newMovePage( Title $from, Title $to ): MovePage;
38}
Handles the backend logic of moving a page from one title to another.
Definition MovePage.php:50
Represents a title within MediaWiki.
Definition Title.php:48
newMovePage(Title $from, Title $to)