MediaWiki REL1_39
MovePageFactory.php
Go to the documentation of this file.
1<?php
21namespace MediaWiki\Page;
22
23use MovePage;
24use Title;
25
33interface MovePageFactory {
34
40 public function newMovePage( Title $from, Title $to ): MovePage;
41}
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:49
Service for page rename actions.
newMovePage(Title $from, Title $to)