blob: d6932ae693ab7e65bc19e0a99c0b33d5ff6c698a (
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\TerritoryUg;
/**
* Class LocaleSwUg
*
* @author Greg Roach <fisharebest@gmail.com>
* @copyright (c) 2015 Greg Roach
* @license GPLv3+
*/
class LocaleSwUg extends LocaleSw {
/** {@inheritdoc} */
public function territory() {
return new TerritoryUg;
}
}
|