summaryrefslogtreecommitdiff
blob: c5fa56c3ccc04a5cb802bd2228a2c716bee5783b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

namespace MediaWiki\CheckUser;

interface PagerFactory {
	/**
	 * Factory to create the pager
	 *
	 * @param \IContextSource $context
	 */
	public function createPager( \IContextSource $context );
}