Your IP : 216.73.216.54


Current Path : /var/www/html/mediawiki-1.43.1/includes/page/
Upload File :
Current File : /var/www/html/mediawiki-1.43.1/includes/page/UndeletePageFactory.php

<?php

namespace MediaWiki\Page;

use MediaWiki\Permissions\Authority;

/**
 * Service for page undelete actions.
 *
 * Default implementation is MediaWiki\Page\PageCommandFactory.
 *
 * @since 1.38
 */
interface UndeletePageFactory {

	/**
	 * @param ProperPageIdentity $page
	 * @param Authority $authority
	 * @return UndeletePage
	 */
	public function newUndeletePage( ProperPageIdentity $page, Authority $authority ): UndeletePage;
}