blob: dee3a70a8d6e9e7a6f846f576d8a509c0ffc9e17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php namespace Fisharebest\Localization\Territory;
/**
* Class AbstractTerritory - Representation of the territory KH - Cambodia.
*
* @author Greg Roach <fisharebest@gmail.com>
* @copyright (c) 2015 Greg Roach
* @license GPLv3+
*/
class TerritoryKh extends AbstractTerritory implements TerritoryInterface {
/** {@inheritdoc} */
public function code() {
return 'KH';
}
/** {@inheritdoc} */
public function firstDay() {
return 0;
}
}
|