aboutsummaryrefslogtreecommitdiffstats
path: root/includes/Notification/TitleAware.php
blob: 5c77f1ac5455bdae32e5f487c5acf9695cfaadc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

namespace MediaWiki\Notification;

use MediaWiki\Page\PageIdentity;

/**
 * Marker interface for Notifications aware of the PageIdentity those refer to
 *
 * @since 1.44
 * @unstable
 */
interface TitleAware {

	/**
	 * Get the PageIdentity of the related page
	 */
	public function getTitle(): PageIdentity;

}