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