blob: 5edc4c0c9acb56c87fea5fe447592398d1c75010 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
namespace Fisharebest\Localization\Language;
use Fisharebest\Localization\Territory\TerritoryCm;
/**
* Class LanguageAgq - Representation of the Aghem language.
*
* @author Greg Roach <fisharebest@gmail.com>
* @copyright (c) 2019 Greg Roach
* @license GPLv3+
*/
class LanguageAgq extends AbstractLanguage implements LanguageInterface
{
public function code()
{
return 'agq';
}
public function defaultTerritory()
{
return new TerritoryCm();
}
}
|