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