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