MediaWiki master
MovePageFactory.php
Go to the documentation of this file.
1<?php
21namespace MediaWiki\Page;
22
24
32interface 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:67
Represents a title within MediaWiki.
Definition Title.php:78
Service for page rename actions.
newMovePage(Title $from, Title $to)