summaryrefslogtreecommitdiff
blob: fbaf462a8b29ff6956ae2567cb12b73df1068156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
declare( strict_types = 1 );

namespace MediaWiki\Extension\Translate\PageTranslation;

/**
 * @license GPL-2.0-or-later
 * @author Niklas Laxström
 * @since 2021.05
 */
interface TranslationUnitReader {
	/** @return TranslationUnit[] */
	public function getUnits(): array;

	/** @return string[] */
	public function getNames(): array;
}