blob: a9394f1f268a75a51bca851ff1ebcc773a0b460e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php namespace Fisharebest\Localization\Locale;
use Fisharebest\Localization\Territory\TerritoryXk;
/**
* Class LocaleSrLatnXk
*
* @author Greg Roach <fisharebest@gmail.com>
* @copyright (c) 2015 Greg Roach
* @license GPLv3+
*/
class LocaleSrLatnXk extends LocaleSrLatn {
public function territory() {
return new TerritoryXk;
}
}
|