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